-
Notifications
You must be signed in to change notification settings - Fork 152
Github workflow fails for python 3.6 #117
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
Comments
Thank you for tracking down this issue and providing references and potential solutions. I really appreciate it! I agree that option 1 seems best. Would you be interested in creating a PR for that? I think ideally the PR should be merged before #116. |
Sure! I'm trying different version combinations. The minimum available torch for python 3.8 is 1.4. Is there a reason to pin pytest and pytest-cov in the requirements? Pytest 3.2.5 gives some ModuleNotFound on python 3.12, so I would probably change that. |
Because python 3.6 has reached EOL and was dropped from the ubuntu-latest image (22.04), the CI will fail when setting up the environment. See kmkurn#117 This updates the python version in the CI matrix to use the oldest and latest supported minor python verion. The torch version is also updated to match the available build on PyPI.
Because python 3.6 has reached EOL and was dropped from the ubuntu-latest image (22.04), the CI will fail when setting up the environment. See kmkurn#117 This updates the python version in the CI matrix to use the oldest and latest supported minor python verion. The torch version is also updated to match the available build on PyPI.
Because python 3.6 has reached EOL and was dropped from the ubuntu-latest image (22.04), the CI will fail when setting up the environment. See kmkurn#117 This updates the python version in the CI matrix to use the oldest and latest supported minor python verion. The torch version is also updated to match the available build on PyPI.
Because python 3.6 has reached EOL and was dropped from the ubuntu-latest image (22.04), the CI will fail when setting up the environment. See kmkurn#117 This updates the python version in the CI matrix to use the oldest supported minor python verion. The torch version is also updated to match the available build on PyPI. Testing on oldest torch 2.x is also added.
Because python 3.6 has reached EOL and was dropped from the ubuntu-latest image (22.04), the CI will fail when setting up the environment. See #117 This updates the python version in the CI matrix to use the oldest supported minor python verion. The torch version is also updated to match the available build on PyPI. Testing on oldest torch 2.x is also added.
This is found in #116 and was also present in #113. Because the ubuntu-latest image was updated to 22.04, which does not have any installable python 3.6 tarballs, the setup-python will fail with an error message
Error: Version 3.6 with arch x64 not found
. This is because python 3.6 reached EOL in 2021. See actions/setup-python#544 for more details.We have two options to make CI work again:
I would suggest option 1 so people can update to the supported python versions.
The text was updated successfully, but these errors were encountered: