-
Notifications
You must be signed in to change notification settings - Fork 4
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
chore: update tests to run on node 20 #31
Conversation
Merge this with the other branch |
.github/workflows/tests.yml
Outdated
@@ -9,7 +9,7 @@ jobs: | |||
runs-on: ubuntu-latest | |||
strategy: | |||
matrix: | |||
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "pypy3"] | |||
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.
Why remove pypy?
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.
The previous tests claimed it was 3.6, i.e., it no longer exists.
c60850d
to
8377d2a
Compare
Fix workflows, tox.ini Drop Python < 3.8 support
8377d2a
to
55ca23f
Compare
@@ -9,7 +9,7 @@ jobs: | |||
runs-on: ubuntu-latest | |||
strategy: | |||
matrix: | |||
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "pypy3"] | |||
python-version: ["3.8", "3.9", "3.10"] |
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.
You need pypy3.10 it seems.
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.
Ok, in the next branch which fixes the pypy error ...
0630e58
to
55ca23f
Compare
Fix workflows, tox.ini
Drop Python < 3.8 support