Skip to content

Commit 60f1c8e

Browse files
authored
Merge pull request #144 from cosine0/py311
Extend support to Python 3.11
2 parents d151d16 + 4c20454 commit 60f1c8e

4 files changed

Lines changed: 4 additions & 7 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ${{ matrix.os }}
1414
strategy:
1515
matrix:
16-
python-version: [3.7, 3.8, 3.9, "3.10"]
16+
python-version: [3.7, 3.8, 3.9, "3.10", "3.11"]
1717
os: [ubuntu-latest, macOS-latest, windows-latest]
1818

1919
steps:

Pipfile

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,3 @@ name = "pypi"
55

66
[packages]
77
pythonfinder = {editable = true, extras = ["dev", "tests"], path = "."}
8-
9-
[dev-packages]
10-
11-
[requires]
12-
python_version = "3.10"

setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ classifier =
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 :: Software Development :: Build Tools
2829
Topic :: Software Development :: Libraries :: Python Modules
2930
Topic :: Utilities

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
[tox]
22
envlist =
3-
docs, packaging, py37, py38, py39, py310, coverage-report
3+
docs, packaging, py37, py38, py39, py310, py311, coverage-report
44

55
[gh-actions]
66
python =
77
3.7: py37
88
3.8: py38
99
3.9: py39
1010
3.10: py310
11+
3.11: py311
1112

1213
[testenv]
1314
passenv = CI GIT_SSL_CAINFO

0 commit comments

Comments
 (0)