diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 800bf4f..5f4c639 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.6, 3.7, 3.8, 3.9] + python-version: [3.6, 3.7, 3.8, 3.9, 3.10, 3.11, 3.12] steps: - uses: actions/checkout@v2 diff --git a/setup.py b/setup.py index ae1c83b..36cf83c 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name="zstd-asgi", - version="0.1", + version="0.2", url="https://github.com/tuffnatty/zstd-asgi", license="MIT", author="Phil Krylov", @@ -18,17 +18,18 @@ description="Zstd compression ASGI middleware", long_description=__doc__, packages=["zstd_asgi"], - python_requires=">=3.6", + python_requires=">=3.8", include_package_data=True, - install_requires=["starlette>=0.13.4", "zstandard>=0.15.2"], + install_requires=["starlette>=0.13.4", "zstandard>=0.22.0"], platforms="any", zip_safe=False, classifiers=[ "Environment :: Web Environment", "Operating System :: OS Independent", - "Programming Language :: Python :: 3.6", - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", ], )