-
Notifications
You must be signed in to change notification settings - Fork 97
Linux ARM and Python 3.11 Support #172
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
Conversation
5c3bb11
to
40e07c1
Compare
@@ -16,8 +16,8 @@ | |||
|
|||
|
|||
def test_workflow_sandbox_stdlib_module_names(): | |||
if sys.version_info != (3, 10): | |||
pytest.skip("Test only runs on 3.10") | |||
if sys.version_info[1] != 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.
Why aren't we checking the major version info anymore?
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 was improperly checking it (the tuple is actually like 5 values, so my !=
wasn't doing the right thing anyways, even though >
and <
and the like do). Since we are never expected to be off version 3 anyways, this was simpler than manually destructuring.
# Need the 8 CPU version that has 12GB of RAM, the 4 CPU version | ||
# only has 6 GB. | ||
runsOn: buildjet-8vcpu-ubuntu-2204-arm | ||
runs-on: ${{ matrix.runsOn || matrix.os }} |
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 do you need runsOn
and os
? Could just use runsOn
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.
Because having os
consistent in the matrix makes the job list look pretty in the UI :-)
What was changed
Checklist