Skip to content

Commit

Permalink
Support tests for Python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
ppizarror committed Nov 4, 2024
1 parent 0bdd896 commit 1e19950
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
uses: ppizarror/workflow-actions/.github/workflows/test_python.yml@master
strategy:
matrix:
python: [ 3.7, 3.8, 3.9, '3.10', '3.11' ]
python: [ 3.7, 3.8, 3.9, '3.10', '3.11', '3.12' ]
with:
install-extras: test
os: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion PyMultiDictionary/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@ def __str__(self) -> str:
patch = property(lambda self: self[2])


vernum = Version(1, 2, 4)
vernum = Version(1, 2, 5)
ver = str(vernum)
rev = ''
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python',
'Topic :: Multimedia',
'Topic :: Text Processing'
Expand Down

0 comments on commit 1e19950

Please sign in to comment.