Skip to content

Commit

Permalink
Bumps version to 1.3.0 (#26)
Browse files Browse the repository at this point in the history
* Bumps to v1.3.0

* Add py 3.11 tests to CI
  • Loading branch information
fullonic authored Jan 10, 2023
1 parent 2cb38b7 commit 0c9a268
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
matrix:
extras-install: [test_brotli, test_brotlipy]
python-version: ["3.7", "3.8", "3.9", "3.10"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v2
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@

setup(
name="brotli-asgi",
version="1.2.0",
version="1.3.0",
url="https://github.com/fullonic/brotli-asgi",
license="MIT",
author="Diogo B Freitas",
author_email="somnium@riseup.net",
description="A compression AGSI middleware using brotli",
long_description=__doc__,
packages=["brotli_asgi"],
python_requires=">=3.6",
python_requires=">=3.7",
include_package_data=True,
install_requires=["starlette>=0.13.4", "brotli>=1.0.7"],
extras_require=extras,
Expand All @@ -34,5 +34,6 @@
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
)

0 comments on commit 0c9a268

Please sign in to comment.