-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add tests on Python 3.12 #115
Conversation
@@ -25,7 +25,7 @@ jobs: | |||
strategy: | |||
matrix: | |||
platform: [ubuntu-latest, windows-latest, macos-latest] | |||
python-version: ["3.8", "3.9", "3.10", "3.11"] | |||
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] | |
python-version: ["3.9", "3.10", "3.11", "3.12"] |
napari no longer supports 3.8 (and soon 3.9), so I suggest dropping it here to keep the same number of CI runs
@@ -18,6 +18,7 @@ classifiers = | |||
Programming Language :: Python :: 3.9 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can't suggest, but I suggest deleting line 17, Python 3.8
@@ -1,13 +1,14 @@ | |||
# For more information about tox, see https://tox.readthedocs.io/en/latest/ | |||
[tox] | |||
envlist = py{38,39,310,311}-{linux,macos,windows} | |||
envlist = py{38,39,310,311,312}-{linux,macos,windows} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
envlist = py{38,39,310,311,312}-{linux,macos,windows} | |
envlist = py{39,310,311,312}-{linux,macos,windows} |
@@ -1,13 +1,14 @@ | |||
# For more information about tox, see https://tox.readthedocs.io/en/latest/ | |||
[tox] | |||
envlist = py{38,39,310,311}-{linux,macos,windows} | |||
envlist = py{38,39,310,311,312}-{linux,macos,windows} | |||
|
|||
[gh-actions] | |||
python = | |||
3.8: py38 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
3.8: py38 |
I'd rather keep this PR simple, and remove Python 3.8 in another PR. |
Thanks, I am currently removing Python 3.8 from various repository and updating the submission to pypi (see #120) |
🎉 thanks! |
No description provided.