Skip to content

Commit

Permalink
Merge pull request #187 from ReubenJ/add-3_11-support
Browse files Browse the repository at this point in the history
Add Python 3.11 support
  • Loading branch information
moomoohk committed May 21, 2023
2 parents abb76a1 + f68a87c commit e0d412f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ jobs:
- name: Check out code
uses: actions/checkout@main

- name: Set up Python 3.10
- name: Set up Python 3.11
uses: actions/setup-python@main
with:
python-version: "3.10"
python-version: "3.11"

- name: Setup flake8 annotations
uses: rbialon/flake8-annotations@v1.1
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
strategy:
matrix:
# Match versions specified in tox.ini
python-version: ['3.8', '3.9', '3.10', 'pypy-3.7']
python-version: ['3.8', '3.9', '3.10', '3.11', 'pypy-3.7']

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
Expand Down
2 changes: 1 addition & 1 deletion dpath/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = "2.1.5"
VERSION = "2.1.6"
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Software Development :: Libraries :: Python Modules',
'Typing :: Typed',
],
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,15 @@
ignore = E501,E722

[tox]
envlist = pypy37, py38, py39, py310
envlist = pypy37, py38, py39, py310, py311

[gh-actions]
python =
pypy-3.7: pypy37
3.8: py38
3.9: py39
3.10: py310
3.11: py311

[testenv]
deps =
Expand Down

0 comments on commit e0d412f

Please sign in to comment.