From 89864655c023cc4f97ffb456d3791e10b1e10e90 Mon Sep 17 00:00:00 2001 From: Roberto Pastor Muela <37798125+RobPasMue@users.noreply.github.com> Date: Thu, 11 Jun 2026 07:49:01 +0200 Subject: [PATCH 1/4] feat: support 3.14 --- src/ansys/tools/installer/constants.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ansys/tools/installer/constants.py b/src/ansys/tools/installer/constants.py index 53a1db76..e08a84b4 100644 --- a/src/ansys/tools/installer/constants.py +++ b/src/ansys/tools/installer/constants.py @@ -225,6 +225,7 @@ "Python 3.11": "3.11.9", "Python 3.12": "3.12.10", "Python 3.13": "3.13.14", + "Python 3.14": "3.14.6", } CONDA_PYTHON_VERSION = "24.1.2-0" From d21a6fd147f820122c07ac99223fd72cdf5c02d6 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Thu, 11 Jun 2026 05:49:16 +0000 Subject: [PATCH 2/4] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- src/ansys/tools/installer/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ansys/tools/installer/constants.py b/src/ansys/tools/installer/constants.py index e08a84b4..edae1b81 100644 --- a/src/ansys/tools/installer/constants.py +++ b/src/ansys/tools/installer/constants.py @@ -225,7 +225,7 @@ "Python 3.11": "3.11.9", "Python 3.12": "3.12.10", "Python 3.13": "3.13.14", - "Python 3.14": "3.14.6", + "Python 3.14": "3.14.6", } CONDA_PYTHON_VERSION = "24.1.2-0" From 721cd73cdcf16d7c5abfa6fc4136427bb463d578 Mon Sep 17 00:00:00 2001 From: Roberto Pastor Muela <37798125+RobPasMue@users.noreply.github.com> Date: Thu, 11 Jun 2026 07:50:02 +0200 Subject: [PATCH 3/4] Update ci_cd.yml --- .github/workflows/ci_cd.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci_cd.yml b/.github/workflows/ci_cd.yml index 0304030b..79117ebd 100644 --- a/.github/workflows/ci_cd.yml +++ b/.github/workflows/ci_cd.yml @@ -9,7 +9,7 @@ on: - main env: - MAIN_PYTHON_VERSION: '3.12' + MAIN_PYTHON_VERSION: '3.14' PRECOMPILE_PYTHON_VERSION: '3.11.9' DOCUMENTATION_CNAME: 'installer.docs.pyansys.com' LIBRARY_NAME: 'ansys-tools-installer' @@ -33,7 +33,7 @@ jobs: runs-on: windows-latest strategy: matrix: - python-version: ['3.10', '3.11', '3.12'] + python-version: ['3.10', '3.11', '3.12', '3.13', '3.14'] fail-fast: false env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From 6f03d0c2e828fdae1ec0b3f23d7c50ac829098f5 Mon Sep 17 00:00:00 2001 From: Roberto Pastor Muela <37798125+RobPasMue@users.noreply.github.com> Date: Thu, 11 Jun 2026 07:50:37 +0200 Subject: [PATCH 4/4] Update pyproject.toml --- pyproject.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 9a50f986..b41a5763 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,6 +28,8 @@ classifiers = [ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", ] dynamic = ["version"]