Skip to content
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

feat: active support for Python 3.13 #1481

Merged
merged 14 commits into from
Nov 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
6 changes: 3 additions & 3 deletions .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
- main

env:
MAIN_PYTHON_VERSION: '3.12'
MAIN_PYTHON_VERSION: '3.13'
PACKAGE_NAME: 'ansys-geometry-core'
DOCUMENTATION_CNAME: 'geometry.docs.pyansys.com'
ANSRV_GEO_IMAGE: 'ghcr.io/ansys/geometry'
Expand Down Expand Up @@ -78,7 +78,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']
should-release:
- ${{ github.event_name == 'push' && contains(github.ref, 'refs/tags') }}
exclude:
Expand Down Expand Up @@ -407,7 +407,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.10', '3.11', '3.12']
python-version: ['3.10', '3.11', '3.12', '3.13']
steps:
- name: Login in Github Container registry
uses: docker/login-action@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/nightly_docker_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ on:
- v*

env:
MAIN_PYTHON_VERSION: '3.11'
MAIN_PYTHON_VERSION: '3.13'
ANSRV_GEO_IMAGE_WINDOWS_TAG: ghcr.io/ansys/geometry:windows-latest-unstable
ANSRV_GEO_IMAGE_LINUX_TAG: ghcr.io/ansys/geometry:linux-latest-unstable
ANSRV_GEO_PORT: 710
Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:
python-version: ${{ env.MAIN_PYTHON_VERSION }}

- name: Set up headless display
uses: pyvista/setup-headless-display-action@v2
uses: pyvista/setup-headless-display-action@v3
with:
pyvista: false

Expand Down
1 change: 1 addition & 0 deletions doc/changelog.d/1481.added.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
active support for Python 3.13
2 changes: 1 addition & 1 deletion doc/source/assets.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ If you lack an internet connection on your installation machine, you should inst
by downloading the wheelhouse archive.

Each wheelhouse archive contains all the Python wheels necessary to install PyAnsys Geometry from scratch on Windows,
Linux, and MacOS from Python 3.10 to 3.12. You can install this on an isolated system with a fresh Python
Linux, and MacOS from Python 3.10 to 3.13. You can install this on an isolated system with a fresh Python
installation or on a virtual environment.

For example, on Linux with Python 3.10, unzip the wheelhouse archive and install it with:
Expand Down
4 changes: 2 additions & 2 deletions doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def get_wheelhouse_assets_dictionary():
"""Auxiliary method to build the wheelhouse assets dictionary."""
assets_context_os = ["Linux", "Windows", "MacOS"]
assets_context_runners = ["ubuntu-latest", "windows-latest", "macos-latest"]
assets_context_python_versions = ["3.10", "3.11", "3.12"]
assets_context_python_versions = ["3.10", "3.11", "3.12", "3.13"]
if get_version_match(__version__) == "dev":
# Try to retrieve the content three times before failing
content = None
Expand Down Expand Up @@ -196,7 +196,7 @@ def intersphinx_pyansys_geometry(switcher_version: str):

# Intersphinx mapping
intersphinx_mapping = {
"python": ("https://docs.python.org/3.11", None),
"python": ("https://docs.python.org/3.13", None),
"numpy": ("https://numpy.org/doc/stable", None),
"scipy": ("https://docs.scipy.org/doc/scipy", None),
"pyvista": ("https://docs.pyvista.org", None),
Expand Down
2 changes: 1 addition & 1 deletion doc/source/getting_started/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ archive for your corresponding machine architecture from the repository's `Relea
<https://github.com/ansys/pyansys-geometry/releases>`_.

Each wheelhouse archive contains all the Python wheels necessary to install PyAnsys Geometry from scratch on Windows,
Linux, and MacOS from Python 3.10 to 3.12. You can install this on an isolated system with a fresh Python
Linux, and MacOS from Python 3.10 to 3.13. You can install this on an isolated system with a fresh Python
installation or on a virtual environment.

For example, on Linux with Python 3.10, unzip the wheelhouse archive and install it with these commands:
Expand Down
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]

dependencies = [
Expand Down Expand Up @@ -66,7 +67,7 @@ tests = [
"scipy==1.14.1",
"semver==3.0.2",
"six==1.16.0",
"vtk==9.3.1",
"vtk==9.4.0",
]
tests-minimal = [
"pytest==8.3.3",
Expand Down Expand Up @@ -104,7 +105,7 @@ doc = [
"sphinx-copybutton==0.5.2",
"sphinx-jinja==2.0.2",
"trame-vtk==2.8.12",
"vtk==9.3.1",
"vtk==9.4.0",
]

[project.urls]
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tox]
description = Default tox environments list
envlist =
style,{tests310,tests311,tests312}{,-coverage},doc
style,{tests310,tests311,tests312,tests313}{,-coverage},doc
skip_missing_interpreters = true
isolated_build = true
isolated_build_env = build
Expand All @@ -12,6 +12,7 @@ basepython =
tests310: python3.10
tests311: python3.11
tests312: python3.12
tests313: python3.13
{style,tests,doc}: python3
setenv =
PYTHONUNBUFFERED = yes
Expand Down
Loading