-
Notifications
You must be signed in to change notification settings - Fork 130
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
Support Python 3.10 #1818
Support Python 3.10 #1818
Conversation
This also uses the "next gen" Python Docker images from CircleCI. Also removes some `persist_to_workspace` that is no longer needed.
@@ -82,7 +82,7 @@ commands: | |||
- run: | |||
name: Setup custom environment variables | |||
command: | | |||
echo "export PATH=$HOME/.cargo/bin:$PATH" >> $BASH_ENV | |||
echo 'export PATH=$HOME/.cargo/bin:$PATH' >> $BASH_ENV |
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.
See this support page for why this is necessary.
.circleci/config.yml
Outdated
@@ -858,6 +860,7 @@ jobs: | |||
|
|||
Python Windows i686 tests: | |||
docker: | |||
# Windows tests require "legacy" Docker images |
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.
Do you know why that is?
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 know why this is, but I would guess some kind of difference in the mingw compiler, causing one of the tests to fail. Good point that I should probably file a new bug to address this later (I don't think it's a high enough priority to do this now).
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 actually figured it out. \o/
This also uses the "next gen" Python Docker images from CircleCI.
Also removes some
persist_to_workspace
that is no longer needed.