Skip to content
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
4 changes: 2 additions & 2 deletions .github/actions/build-library/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ inputs:

python-version:
description: "Python version for the build environment."
default: '3.12'
default: '3.13'
required: false
type: string

Expand All @@ -27,7 +27,7 @@ runs:
fetch-depth: 0
fetch-tags: true

- name: "Set up Python 3.12 with uv"
- name: "Set up Python with uv"
uses: ansys/actions/_setup-python@v10.0.11
with:
python-version: ${{ inputs.python-version }}
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/setup-env/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ runs:
steps:
- run: |
echo "DOCUMENTATION_CNAME=dynamicreporting.docs.pyansys.com" >> $GITHUB_ENV
echo "MAIN_PYTHON_VERSION=3.12" >> $GITHUB_ENV
echo "MAIN_PYTHON_VERSION=3.13" >> $GITHUB_ENV
echo "PACKAGE_NAME=ansys-dynamicreporting-core" >> $GITHUB_ENV
echo "PACKAGE_NAMESPACE=ansys.dynamicreporting.core" >> $GITHUB_ENV
echo "ANSYS_VERSION=271" >> $GITHUB_ENV
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/setup-python-env/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ inputs:
python-version:
description: "Python version to use"
required: false
default: "3.12"
default: "3.13"
uv-version:
description: "uv version to use"
required: false
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
fail-fast: false
matrix:
os: [ ubuntu-latest, windows-latest ]
python-version: [ '3.10', '3.11', '3.12' ]
python-version: [ '3.10', '3.11', '3.12', '3.13' ]
steps:
- name: Checkout repository
uses: actions/checkout@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:

strategy:
matrix:
python-version: [ '3.10', '3.11', '3.12' ]
python-version: [ '3.10', '3.11', '3.12', '3.13' ]

steps:
- name: Checkout repository
Expand Down
6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,9 @@ To reach the project support team, email

Installation
------------
The ``pydynamicreporting`` package supports Python 3.10 through 3.12 on
Windows and Linux. It is currently available on the PyPI
`repository <https://pypi.org/project/ansys-dynamicreporting-core/>`_.
The ``pydynamicreporting`` package supports Python 3.10 through 3.13 on
Windows and Linux. It is currently available on
Comment thread
viseshrp marked this conversation as resolved.
`PyPI <https://pypi.org/project/ansys-dynamicreporting-core/>`_.

For the base client package, run:

Expand Down
1 change: 1 addition & 0 deletions constraints/v261.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
django>=4.2.27,<5.0
django-guardian>=2.4.0,<3.0.0
djangorestframework>=3.15.2,<3.16.0
numpy>=1.26.4,<2.0.0; python_version < "3.13"
4 changes: 2 additions & 2 deletions doc/source/gettingstarted/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ To get a copy of Ansys, visit the `Ansys <https://www.ansys.com/>`_ website.
Installation
~~~~~~~~~~~~

The ``ansys-dynamicreporting-core`` package currently supports Python 3.9
through Python 3.12 on Windows and Linux.
The ``ansys-dynamicreporting-core`` package currently supports Python 3.10
through Python 3.13 on Windows and Linux.
Comment thread
viseshrp marked this conversation as resolved.

To install the latest package from GitHub, run this command:

Expand Down
8 changes: 5 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[project]
name = "ansys-dynamicreporting-core"
dynamic = ["version"]
requires-python = ">=3.10, <3.13"
requires-python = ">=3.10, <3.14"
Comment thread
viseshrp marked this conversation as resolved.
dependencies = [
"docker>=7.1.0",
"pypng>=0.20220715.0",
Expand All @@ -17,7 +17,8 @@ dependencies = [
"django-guardian>=2.4.0,<4.0.0",
"djangorestframework>=3.15.2,<3.17.0",
"tzlocal>=5.3.1,<6.0",
"numpy>=1.26.4,<2.0.0",
"numpy>=1.26.4,<2.0.0; python_version < '3.13'",
"numpy>=2.0.0,<3.0.0; python_version >= '3.13'",
"python-pptx>=1.0.2,<2.0.0",
Comment thread
viseshrp marked this conversation as resolved.
"pandas>=2.2.2,<3.0.0",
"statsmodels>=0.14.2,<0.15.0",
Expand Down Expand Up @@ -50,6 +51,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
]

Expand Down Expand Up @@ -243,4 +245,4 @@ require_serial = true
exclude_dirs = ["venv/*", "scripts/*", "tests/*", "doc/*"]

[tool.pre-commit.default_language_versions]
python = "3.12"
python = "3.13"
495 changes: 473 additions & 22 deletions uv.lock

Large diffs are not rendered by default.

Loading