Skip to content

Commit f7a55d9

Browse files
Remove support for python 3.9 (#457)
1 parent 8f8b808 commit f7a55d9

File tree

3 files changed

+3
-7
lines changed

3 files changed

+3
-7
lines changed

.github/workflows/ci_cd.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -115,16 +115,14 @@ jobs:
115115
fail-fast: false
116116
matrix:
117117
os: [ubuntu-latest, windows-latest, macos-latest]
118-
python-version: ['3.9', '3.10', '3.11', '3.12']
118+
python-version: ['3.10', '3.11', '3.12']
119119
should-release:
120120
- ${{ github.event_name == 'push' && contains(github.ref, 'refs/tags') }}
121121
exclude:
122122
- should-release: false
123123
os: macos-latest
124124
- should-release: false
125125
os: windows-latest
126-
- should-release: false
127-
python-version: '3.9'
128126
- should-release: false
129127
python-version: '3.11'
130128
- should-release: false

.github/workflows/nightly.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ jobs:
5353
matrix:
5454
os: ['ubuntu-latest']
5555
cfg: [
56-
{ python-version: '3.9', toxenv: 'py39' },
5756
{ python-version: '3.10', toxenv: 'py310' },
5857
{ python-version: '3.11', toxenv: 'py311' },
5958
{ python-version: '3.12', toxenv: 'py312' },
@@ -75,7 +74,7 @@ jobs:
7574
fail-fast: false
7675
matrix:
7776
os: [ubuntu-latest, windows-latest, macos-latest]
78-
python-version: ['3.9', '3.10', '3.11', '3.12']
77+
python-version: ['3.10', '3.11', '3.12']
7978
should-release:
8079
- ${{ github.event_name == 'push' && contains(github.ref, 'refs/tags') }}
8180
exclude:

pyproject.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ name = "ansys-hps-client"
88
version = "0.10.dev0"
99
description = "A python client for Ansys HPC Platform Services"
1010
readme = "README.rst"
11-
requires-python = ">=3.9,<4.0"
11+
requires-python = ">=3.10,<4.0"
1212
license = { file = "LICENSE" }
1313
authors = [{ name = "ANSYS, Inc.", email = "pyansys.core@ansys.com" }]
1414
maintainers = [{ name = "ANSYS, Inc.", email = "pyansys.core@ansys.com" }]
@@ -17,7 +17,6 @@ classifiers = [
1717
"Development Status :: 4 - Beta",
1818
'Intended Audience :: Science/Research',
1919
'Topic :: Scientific/Engineering :: Information Analysis',
20-
"Programming Language :: Python :: 3.9",
2120
"Programming Language :: Python :: 3.10",
2221
"Programming Language :: Python :: 3.11",
2322
"Programming Language :: Python :: 3.12",

0 commit comments

Comments
 (0)