-
Notifications
You must be signed in to change notification settings - Fork 66
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
Feat new python versions #68
Conversation
wirthual
commented
Jul 29, 2022
•
edited
Loading
edited
- Fixed typo in readme
- Set protobuf to lower version to avoid installation error (Can't get 0.3.0 running #65 )
- Updated lock
- Use latest available patch per python version
- Update github action name for docs
.github/workflows/runtests.yml
Outdated
@@ -7,7 +7,7 @@ jobs: | |||
runs-on: ubuntu-latest | |||
strategy: | |||
matrix: | |||
python-version: ["3.6.7","3.7", "3.8", "3.9"] | |||
python-version: ["3.9.13","3.9.10","3.9.6","3.9.5","3.9.4","3.9.3","3.9.1","3.9.0","3.8.13","3.8.12","3.8.10","3.8.9","3.8.8","3.8.7","3.8.6","3.8.5","3.8.3","3.8.2","3.8.1","3.8.0","3.7.13","3.7.12","3.7.11","3.7.9","3.7.8","3.7.6","3.7.5","3.7.1","3.6.12","3.6.11","3.6.10","3.6.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.
It is not necessary to test Python versions on a patch level.
This gives basically nothing, but only increases the test time and also the resource consumption.
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, testing patches is not really necessary
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.
Makes sense. Will keep the latest patch for each minor version 👍
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 don't really like testing so much different python versions.
That not only increases test and thus feedback time and also increases the risk of failure due to any API that is currently not available (as we use real API-calls in our tests).
This reverts commit fed57de.
…e setup python to v4