Fix contourpy version incompatibility with Python 3.10 in CI#3
Fix contourpy version incompatibility with Python 3.10 in CI#3
Conversation
|
resolve all and any issues until the tests successfully pass @copilot |
Co-authored-by: lmangani <1423657+lmangani@users.noreply.github.com>
The code fix is complete (commit eb19d4c). The workflows show "action_required" status because they need approval to run. Once approved, the contourpy 1.3.2 downgrade should resolve the Python 3.10 compatibility issue and allow tests to pass. |
There was a problem hiding this comment.
Pull request overview
This PR fixes a CI pipeline failure caused by a Python version incompatibility. The contourpy==1.3.3 package requires Python ≥3.11, but the macOS CI workflows use Python 3.10.11. The fix downgrades contourpy to version 1.3.2, which is the latest release compatible with Python 3.10.
Key changes:
- Downgraded
contourpyfrom version 1.3.3 to 1.3.2 in both requirements files to ensure compatibility with Python 3.10
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| requirements_ace.txt | Downgraded contourpy from 1.3.3 to 1.3.2 for Python 3.10 compatibility |
| requirements_ace_macos.txt | Downgraded contourpy from 1.3.3 to 1.3.2 for Python 3.10 compatibility |
The changes are appropriate and correctly address the CI failure. Both requirements files have been consistently updated, and the downgrade to contourpy==1.3.2 is the right solution for maintaining Python 3.10 compatibility while using the latest compatible version of the package.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
The macOS CI workflow fails because
contourpy==1.3.3requires Python ≥3.11, but the CI environment uses Python 3.10.11.Changes
contourpyfrom1.3.3to1.3.2in bothrequirements_ace.txtandrequirements_ace_macos.txtVersion 1.3.2 is the latest release compatible with Python 3.10.
Original prompt
This pull request was created from Copilot chat.
💬 We'd love your input! Share your thoughts on Copilot coding agent in our 2 minute survey.