Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
fc35634
chore: active support for Python 3.13
clatapie Dec 9, 2024
5006226
chore: adding changelog file 3605.added.md [dependabot-skip]
pyansys-ci-bot Dec 9, 2024
06aadef
fix: version in ``pyproject.toml``
clatapie Dec 9, 2024
f21c997
Merge branch 'chore/supporting_python3.13' of https://github.com/pyan…
clatapie Dec 9, 2024
c991ceb
review: applying @RobPasMue's suggestions
clatapie Dec 10, 2024
dac3c69
fix: vtk version to 9.4.0
clatapie Dec 10, 2024
82d43be
Merge branch 'main' into chore/supporting_python3.13
clatapie Dec 10, 2024
b8a5044
Merge branch 'main' into chore/supporting_python3.13
germa89 Dec 10, 2024
e13de70
Merge branch 'main' into chore/supporting_python3.13
clatapie Dec 12, 2024
556467f
maint: update ``"ansys-tools-visualization-interface``
clatapie Dec 12, 2024
6a1f301
Merge branch 'chore/supporting_python3.13' of https://github.com/pyan…
clatapie Dec 12, 2024
8ff2a5c
Merge branch 'main' into chore/supporting_python3.13
clatapie Dec 18, 2024
1904d76
Merge branch 'main' into chore/supporting_python3.13
germa89 Jan 7, 2025
b17a3de
Merge branch 'main' into chore/supporting_python3.13
clatapie Jan 23, 2025
0cb2365
Merge branch 'main' into chore/supporting_python3.13
germa89 Feb 26, 2025
0da5cb8
build: downgrade vtk to 9.3.1
germa89 Feb 26, 2025
3e651eb
build: update ansys-tools-visualization-interface
germa89 Feb 26, 2025
4078519
revert: not changing examples requirements
germa89 Feb 26, 2025
a77c7a3
build: downgrade vtk
germa89 Feb 26, 2025
ab86cd3
fix: bump vtk to 9.4.1
germa89 Feb 26, 2025
48547a5
chore: merge remote-tracking branch 'origin/main' into chore/supporti…
germa89 Mar 7, 2025
4259301
Apply suggestions from code review
germa89 Apr 22, 2025
0fd13c7
chore: merge remote-tracking branch 'origin/main' into chore/supporti…
germa89 Apr 22, 2025
c11ce28
chore: merge remote-tracking branch 'origin/main' into chore/supporti…
germa89 Apr 22, 2025
fae33c6
chore: update Python version references in CI workflows to 3.13
germa89 Apr 22, 2025
518983f
chore: update installation steps in test-local workflow to not build …
germa89 Apr 22, 2025
c4b8160
chore: add conditional gcc installation for cicd mapdl version
germa89 May 6, 2025
5e226a5
chore: merge branch 'main' into chore/supporting_python3.13
germa89 May 6, 2025
a73f872
fix: add g++ installation to the CI workflow for enhanced compatibility
germa89 May 6, 2025
15293d2
fix: enable building and installing package in CI workflow
germa89 May 6, 2025
67ad3c5
fix: correct macOS spelling in documentation
germa89 May 6, 2025
05c6046
chore: update .github/workflows/test-local.yml
germa89 May 6, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/bug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ body:
- '3.10'
- '3.11'
- '3.12'
- '3.13'
validations:
required: true

Expand Down
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ body:
- '3.10'
- '3.11'
- '3.12'
- '3.13'
validations:
required: true

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ['3.10', '3.11', '3.12']
python-version: ['3.10', '3.11', '3.12', '3.13']
# Only perform wheelhouse builds for macOS when releasing
should-release:
- ${{ github.event_name == 'push' && contains(github.ref, 'refs/tags') }}
Expand Down
1 change: 1 addition & 0 deletions doc/changelog.d/3605.added.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
chore: active support for Python 3.13
2 changes: 1 addition & 1 deletion doc/source/getting_started/install_pymapdl.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Install PyMAPDL
Python module
~~~~~~~~~~~~~
The ``ansys.mapdl.core`` package currently supports Python 3.10 through
Python 3.12 on Windows, Mac OS, and Linux.
Python 3.13 on Windows, Mac OS, and Linux.

Install the latest release from `PyPi <pymapdl_pypi_>`_ with this command:

Expand Down
4 changes: 2 additions & 2 deletions doc/source/user_guide/upf.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ Python language to code user programmable subroutines. A subset of the
documented UPF subroutines support the Python UPF capability. For more information,
see `Supported UPF subroutines`_).

You must install a Python distribution before using this feature. Python 3.9
through Python 3.12 are supported.
You must install a Python distribution before using this feature. Python 3.10
through Python 3.13 are supported.

Python UPFs are only supported on Linux.

Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ name = "ansys-mapdl-core"
version = "0.69.dev0"
description = "A Python wrapper for Ansys MAPDL."
readme = "README.md"
requires-python = ">=3.10,<3.13" # Update also 'MINIMUM_PYTHON_VERSION' in src/ansys/mapdl/core/__init__.py
requires-python = ">=3.10,<3.14" # Update also 'MINIMUM_PYTHON_VERSION' in src/ansys/mapdl/core/__init__.py
license = {file = "LICENSE"}
authors = [{ name = "ANSYS, Inc.", email = "[email protected]" }]
maintainers = [{ name = "ANSYS, Inc.", email = "[email protected]" }]
Expand Down Expand Up @@ -45,6 +45,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]

[project.optional-dependencies]
Expand Down
1 change: 1 addition & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ basepython =
py310: python3.10
py311: python3.11
py312: python3.12
py313: python3.13
py: python3
{style,reformat,doc}: python3
setenv =
Expand Down
Loading