Skip to content

Commit

Permalink
Version bump to 0.2; update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
tuffnatty committed Dec 16, 2023
1 parent 4523307 commit 49bf7f3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
11 changes: 6 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,25 +10,26 @@

setup(
name="zstd-asgi",
version="0.1",
version="0.2",
url="https://github.com/tuffnatty/zstd-asgi",
license="MIT",
author="Phil Krylov",
author_email="[email protected]",
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",
],
)

0 comments on commit 49bf7f3

Please sign in to comment.