Skip to content

Commit ccec2ad

Browse files
authored
Change python support version (#64)
1 parent ee5c378 commit ccec2ad

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/ci_cd.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
fail-fast: false
5252
matrix:
5353
os: [ubuntu-latest, windows-latest, macos-latest]
54-
python-version: ['3.8', '3.9', '3.10', '3.11']
54+
python-version: ['3.9', '3.10', '3.11', '3.12']
5555
should-release:
5656
- ${{ github.event_name == 'push' && contains(github.ref, 'refs/tags') }}
5757
exclude:
@@ -73,7 +73,7 @@ jobs:
7373
strategy:
7474
matrix:
7575
os: [ ubuntu-latest ]
76-
python-version: [ '3.8', '3.9', '3.10', '3.11' ]
76+
python-version: [ '3.9', '3.10', '3.11', '3.12' ]
7777

7878
steps:
7979
- uses: actions/checkout@v4

.github/workflows/nightly.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
fail-fast: false
3131
matrix:
3232
os: [ubuntu-latest, windows-latest]
33-
python-version: ['3.8', '3.9', '3.10', '3.11']
33+
python-version: [ '3.9', '3.10', '3.11', '3.12']
3434
steps:
3535
- name: Build wheelhouse and perform smoke test
3636
uses: ansys/actions/build-wheelhouse@v4
@@ -47,7 +47,7 @@ jobs:
4747
strategy:
4848
matrix:
4949
os: [ ubuntu-latest ]
50-
python-version: [ '3.8', '3.9', '3.10', '3.11' ]
50+
python-version: [ '3.9', '3.10', '3.11', '3.12' ]
5151

5252
steps:
5353
- uses: actions/checkout@v4

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ To reach the project support team, email `[email protected] <pyansys.core@a
6666

6767
Installation
6868
------------
69-
The ``pydynamicreporting`` package supports Python 3.7 through 3.11 on
69+
The ``pydynamicreporting`` package supports Python 3.9 through 3.12 on
7070
Windows and Linux. It is currently available on the PyPi
7171
`repository <https://pypi.org/project/ansys-dynamicreporting-core/>`_.
7272

doc/source/gettingstarted/index.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ To get a copy of Ansys, visit the `Ansys <https://www.ansys.com/>`_ website.
1111
Installation
1212
~~~~~~~~~~~~
1313

14-
The ``ansys-dynamicreporting-core`` package currently supports Python 3.8
15-
through Python 3.11 on Windows and Linux.
14+
The ``ansys-dynamicreporting-core`` package currently supports Python 3.9
15+
through Python 3.12 on Windows and Linux.
1616

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

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ classifiers = [
2727
"License :: OSI Approved :: MIT License",
2828
"Operating System :: OS Independent",
2929
"Natural Language :: English",
30-
"Programming Language :: Python :: 3.8",
3130
"Programming Language :: Python :: 3.9",
3231
"Programming Language :: Python :: 3.10",
3332
"Programming Language :: Python :: 3.11",
33+
"Programming Language :: Python :: 3.12",
3434
"Topic :: Software Development :: Libraries :: Python Modules",
3535
]
3636
dependencies = [

0 commit comments

Comments
 (0)