Skip to content

Commit

Permalink
Merge pull request #510 from rodjek/py312
Browse files Browse the repository at this point in the history
Test under Python 3.11 & 3.12
  • Loading branch information
rtibbles committed Aug 2, 2024
2 parents 5e9b446 + 867ce15 commit 3b35f3b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pythontest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
fail-fast: false
matrix:
os: [windows-latest, ubuntu-latest, macos-13]
python-version: [3.8, 3.9, '3.10']
python-version: [3.8, 3.9, '3.10', '3.11', '3.12']
include:
- os: ubuntu-latest
pippath: ~/.cache/pip
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
"filetype>=1.1.0",
"urllib3==2.2.2",
],
python_requires=">=3.8, <3.11",
python_requires=">=3.8, <3.13",
license="MIT license",
zip_safe=False,
keywords="ricecooker",
Expand Down
4 changes: 3 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py3.{6,7,8,9,10}
envlist = py3.{6,7,8,9,10,11,12}

[testenv]
basepython =
Expand All @@ -8,6 +8,8 @@ basepython =
py3.8: python3.8
py3.9: python3.9
py3.10: python3.10
py3.11: python3.11
py3.12: python3.12
deps =
-r{toxinidir}/requirements_test.txt
setenv =
Expand Down

0 comments on commit 3b35f3b

Please sign in to comment.