-
Notifications
You must be signed in to change notification settings - Fork 1
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
Add python 3.13 support #740
base: main
Are you sure you want to change the base?
Conversation
pyproject.toml
Outdated
# TODO: Once ansys-mapdl-core and ansys-mechanical-core support Python 3.13, | ||
# remove the 'python' limit below and update the main Python version in CI. | ||
pyvista = { version = ">=0.42.0", optional = true, extras = ["jupyter", "trame"] } | ||
ansys-mapdl-core = { version = ">=0.68.3", optional = true } | ||
ansys-mapdl-core = { version = ">=0.68.3", optional = true, python=">=3.10,<3.13" } | ||
ansys-dpf-composites = { version = ">=0.6", optional = true } | ||
ansys-dpf-core = { version = ">=0.13", optional = true} | ||
ansys-mechanical-core = { version = ">=0.10.0", optional = true } | ||
ansys-mechanical-core = { version = ">=0.10.0", optional = true, python=">=3.10,<3.13" } |
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.
To revert before merging, to avoid accidentally leaving them out (these are user-facing dependencies via the examples
and all
extras).
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #740 +/- ##
==========================================
- Coverage 94.97% 94.71% -0.27%
==========================================
Files 109 109
Lines 5696 5696
Branches 322 322
==========================================
- Hits 5410 5395 -15
- Misses 285 296 +11
- Partials 1 5 +4
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
e25ca9a
to
b0f4659
Compare
No description provided.