Skip to content

Commit 5a29cdb

Browse files
chore: drop python3.9 support (#3326)
* chore: drop python3.9 support * chore: using python3.10 for CICD. * chore: adding changelog file 3326.added.md * chore: fully removing python3.9 testing --------- Co-authored-by: pyansys-ci-bot <[email protected]>
1 parent f21aac9 commit 5a29cdb

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ on:
2020

2121
env:
2222
PROJECT_NAME: 'PyMAPDL'
23-
MAIN_PYTHON_VERSION: '3.10'
23+
MAIN_PYTHON_VERSION: '3.11'
2424
PACKAGE_NAME: 'ansys-mapdl-core'
2525
PACKAGE_NAMESPACE: 'ansys.mapdl.core'
2626
DOCUMENTATION_CNAME: 'mapdl.docs.pyansys.com'
@@ -120,7 +120,7 @@ jobs:
120120
fail-fast: false
121121
matrix:
122122
os: [ubuntu-latest, windows-latest, macos-latest]
123-
python-version: ['3.9', '3.10', '3.11', '3.12']
123+
python-version: ['3.10', '3.11', '3.12']
124124
# Only perform wheelhouse builds for macOS when releasing
125125
should-release:
126126
- ${{ github.event_name == 'push' && contains(github.ref, 'refs/tags') }}

doc/changelog.d/3326.added.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
chore: drop python3.9 support

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ name = "ansys-mapdl-core"
88
version = "0.69.dev0"
99
description = "A Python wrapper for Ansys MAPDL."
1010
readme = "README.md"
11-
requires-python = ">=3.9,<3.13" # Update also 'MINIMUM_PYTHON_VERSION' in src/ansys/mapdl/core/__init__.py
11+
requires-python = ">=3.10,<3.13" # Update also 'MINIMUM_PYTHON_VERSION' in src/ansys/mapdl/core/__init__.py
1212
license = {file = "LICENSE"}
1313
authors = [{ name = "ANSYS, Inc.", email = "[email protected]" }]
1414
maintainers = [{ name = "ANSYS, Inc.", email = "[email protected]" }]

src/ansys/mapdl/core/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
os.makedirs(USER_DATA_PATH)
3737

3838
DEPRECATING_MINIMUM_PYTHON_VERSION = True
39-
MINIMUM_PYTHON_VERSION = (3, 9)
39+
MINIMUM_PYTHON_VERSION = (3, 10)
4040

4141
first_time_file = os.path.join(USER_DATA_PATH, ".firstime")
4242
if not os.path.exists(first_time_file): # pragma: no cover

0 commit comments

Comments
 (0)