Skip to content

Commit e5b41fc

Browse files
committed
test: test against CPython 3.11
1 parent e4b0750 commit e5b41fc

File tree

5 files changed

+8
-4
lines changed

5 files changed

+8
-4
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ jobs:
1616
- "3.8"
1717
- "3.9"
1818
- "3.10"
19+
- "3.11"
1920
- "pypy-3.6"
2021
- "pypy-3.7"
2122
- "pypy-3.8"
@@ -40,7 +41,7 @@ jobs:
4041
- name: Setup Python
4142
uses: actions/setup-python@v2
4243
with:
43-
python-version: "3.10"
44+
python-version: "3.11"
4445
- name: Install dependencies
4546
run: pip install tox
4647
- name: Run ${{ matrix.env }}
@@ -57,7 +58,7 @@ jobs:
5758
- name: Setup Python
5859
uses: actions/setup-python@v2
5960
with:
60-
python-version: "3.10"
61+
python-version: "3.11"
6162
- name: Build
6263
run: python setup.py sdist bdist_wheel
6364
- name: Save build artifacts

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ adheres to [Semantic Versioning](https://semver.org/).
1313

1414
- Necessary code changes following dev dependency update: black
1515
- Refactor a descriptor following PEP 487
16+
- Add tests for CPython 3.11
17+
- Use CPython 3.11 for misc. tests
1618

1719
## [0.4.0] - 2022-01-09
1820

mypy.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ignore_missing_imports = False
88
follow_imports = normal
99

1010
# Platform configuration
11-
python_version = 3.10
11+
python_version = 3.11
1212

1313
# Disallow dynamic typing
1414
disallow_any_unimported = True

setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ classifiers =
2424
Programming Language :: Python :: 3.8
2525
Programming Language :: Python :: 3.9
2626
Programming Language :: Python :: 3.10
27+
Programming Language :: Python :: 3.11
2728
Topic :: Utilities
2829
Topic :: System :: Archiving
2930
Topic :: System :: Archiving :: Compression

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist =
3-
py, py36, py37, py38, py39, py310, pypy3
3+
py, py36, py37, py38, py39, py310, py311, pypy3
44
generate-integration-files, type, lint, format
55

66
[testenv]

0 commit comments

Comments
 (0)