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 }} 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"] diff --git a/src/ansys/tools/installer/constants.py b/src/ansys/tools/installer/constants.py index 53a1db76..edae1b81 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"