Skip to content

Commit e0d412f

Browse files
authored
Merge pull request #187 from ReubenJ/add-3_11-support
Add Python 3.11 support
2 parents abb76a1 + f68a87c commit e0d412f

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ jobs:
3030
- name: Check out code
3131
uses: actions/checkout@main
3232

33-
- name: Set up Python 3.10
33+
- name: Set up Python 3.11
3434
uses: actions/setup-python@main
3535
with:
36-
python-version: "3.10"
36+
python-version: "3.11"
3737

3838
- name: Setup flake8 annotations
3939
uses: rbialon/[email protected]
@@ -70,7 +70,7 @@ jobs:
7070
strategy:
7171
matrix:
7272
# Match versions specified in tox.ini
73-
python-version: ['3.8', '3.9', '3.10', 'pypy-3.7']
73+
python-version: ['3.8', '3.9', '3.10', '3.11', 'pypy-3.7']
7474

7575
# Steps represent a sequence of tasks that will be executed as part of the job
7676
steps:

dpath/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = "2.1.5"
1+
VERSION = "2.1.6"

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@
4848
'Programming Language :: Python :: 3.8',
4949
'Programming Language :: Python :: 3.9',
5050
'Programming Language :: Python :: 3.10',
51+
'Programming Language :: Python :: 3.11',
5152
'Topic :: Software Development :: Libraries :: Python Modules',
5253
'Typing :: Typed',
5354
],

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,15 @@
77
ignore = E501,E722
88

99
[tox]
10-
envlist = pypy37, py38, py39, py310
10+
envlist = pypy37, py38, py39, py310, py311
1111

1212
[gh-actions]
1313
python =
1414
pypy-3.7: pypy37
1515
3.8: py38
1616
3.9: py39
1717
3.10: py310
18+
3.11: py311
1819

1920
[testenv]
2021
deps =

0 commit comments

Comments
 (0)