Skip to content

Commit ea563a6

Browse files
authored
Merge pull request #96 from pycompression/python3.10
Also test on 3.10
2 parents 9aedcc9 + 4e7dc72 commit ea563a6

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ jobs:
6363
- "3.7"
6464
- "3.8"
6565
- "3.9"
66+
- "3.10"
6667
- "pypy-3.6"
6768
- "pypy-3.7"
6869
os: ["ubuntu-latest"]

CHANGELOG.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ Changelog
99
1010
version 1.0.0-dev
1111
------------------
12+
+ Support and tests for Python 3.10 were added.
1213
+ Due to a change in the deployment process wheels should work for older
1314
versions of pip.
1415
+ Added a ``igzip_lib.decompressobj`` function to initiate an IgzipDecompressor

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,8 +204,9 @@ def build_isa_l(compiler_command: str, compiler_options: str):
204204
"Programming Language :: Python :: 3.7",
205205
"Programming Language :: Python :: 3.8",
206206
"Programming Language :: Python :: 3.9",
207+
"Programming Language :: Python :: 3.10",
207208
"Programming Language :: Cython",
208-
"Development Status :: 4 - Beta",
209+
"Development Status :: 5 - Production/Stable",
209210
"Topic :: System :: Archiving :: Compression",
210211
"License :: OSI Approved :: MIT License",
211212
"Operating System :: POSIX :: Linux",

0 commit comments

Comments
 (0)