-
Notifications
You must be signed in to change notification settings - Fork 149
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
ci: test against modern python versions and fix broken test suite #348
ci: test against modern python versions and fix broken test suite #348
Conversation
d0d3199
to
9300c31
Compare
|
.github/workflows/test.yaml
Outdated
@@ -37,7 +37,7 @@ jobs: | |||
# specified below, these parameters have no meaning on their own and | |||
# gain meaning on how job steps use them. | |||
jupyterlab_version: [2, 3] | |||
python: [3.6, 3.7, 3.8, 3.9] | |||
python: ["3.6", "3.7", "3.10", "3.11"] |
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.6 is EOL, probably just drop that, too. Might just need 3.7
and 3.11
.
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.
I agree deal! I'd like to make a dedicated PR for dropping support for python 3.6 though.
177d261
to
9f5f750
Compare
@bollwyvl I made a few attempts but can't understand how to pass I attemted in 58440a0 and a few other similar commits. I've read in source code and documentation without understanding what I can do here. |
9f5f750
to
58440a0
Compare
Thank you for helping out with this @bollwyvl!! I'm quite lost and has lots to learn about .robot stuff |
58440a0
to
6a16ac6
Compare
a36feb6
to
43ee556
Compare
Wieeee! I failed to set |
Merging and going for a support removal of py36 PR |
I figure the most important versions to test are the oldest and newest. But, it can help to know if something is just too old or just too new to function as well.
With this PR I update the CI system to run against py36, 37, 310, and 311, instead of py36, 37, 38, 39.