Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ['3.10', '3.11', '3.12', '3.13']
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
# Only perform wheelhouse builds for Windows and macOS when releasing
should-release:
- ${{ github.event_name == 'push' && contains(github.ref, 'refs/tags') }}
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Installation
For users
~~~~~~~~~
The ``ansys.math.core`` package currently supports Python 3.10 through
Python 3.13 on Windows, Mac OS, and Linux.
Python 3.14 on Windows, Mac OS, and Linux.

Install the latest package for use with this command:

Expand Down
1 change: 1 addition & 0 deletions doc/changelog.d/567.miscellaneous.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Build: supporting Python 3.14
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ classifiers=[
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
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,{py310,py311,py312,py313}{,-coverage},doc
style,{py310,py311,py312,py313,py314}{,-coverage},doc
skip_missing_interpreters = true
isolated_build = true
isolated_build_env = build
Expand All @@ -13,6 +13,7 @@ basepython =
py311: python3.11
py312: python3.12
py313: python3.13
py314: python3.14
py: python3
{style,reformat,doc}: python3
setenv =
Expand Down
Loading