Skip to content

Commit

Permalink
run tests with python3.12 (#228)
Browse files Browse the repository at this point in the history
* run tests with python3.12

* update tornado version

* fix tornado versions
  • Loading branch information
aisk authored Nov 26, 2023
1 parent 977c6ca commit a7b17e0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v3
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@
]

tornado_requires = [
"tornado>=4.0,<6.0",
"tornado>=4.0,<7.0; python_version>='3.12'",
"tornado>=4.0,<6.0; python_version<'3.12'",
]

try:
Expand Down

0 comments on commit a7b17e0

Please sign in to comment.