Skip to content

Commit 49bf7f3

Browse files
committed
Version bump to 0.2; update dependencies
1 parent 4523307 commit 49bf7f3

2 files changed

Lines changed: 7 additions & 6 deletions

File tree

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
strategy:
1818
matrix:
19-
python-version: [3.6, 3.7, 3.8, 3.9]
19+
python-version: [3.6, 3.7, 3.8, 3.9, 3.10, 3.11, 3.12]
2020

2121
steps:
2222
- uses: actions/checkout@v2

setup.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,25 +10,26 @@
1010

1111
setup(
1212
name="zstd-asgi",
13-
version="0.1",
13+
version="0.2",
1414
url="https://github.com/tuffnatty/zstd-asgi",
1515
license="MIT",
1616
author="Phil Krylov",
1717
author_email="phil@krylov.eu",
1818
description="Zstd compression ASGI middleware",
1919
long_description=__doc__,
2020
packages=["zstd_asgi"],
21-
python_requires=">=3.6",
21+
python_requires=">=3.8",
2222
include_package_data=True,
23-
install_requires=["starlette>=0.13.4", "zstandard>=0.15.2"],
23+
install_requires=["starlette>=0.13.4", "zstandard>=0.22.0"],
2424
platforms="any",
2525
zip_safe=False,
2626
classifiers=[
2727
"Environment :: Web Environment",
2828
"Operating System :: OS Independent",
29-
"Programming Language :: Python :: 3.6",
30-
"Programming Language :: Python :: 3.7",
3129
"Programming Language :: Python :: 3.8",
3230
"Programming Language :: Python :: 3.9",
31+
"Programming Language :: Python :: 3.10",
32+
"Programming Language :: Python :: 3.11",
33+
"Programming Language :: Python :: 3.12",
3334
],
3435
)

0 commit comments

Comments
 (0)