Skip to content

Commit 4fcc96e

Browse files
authored
Update minimal python version (#2956)
* Update minimal version * Add info in pyproject.toml
1 parent 798bd06 commit 4fcc96e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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"
11+
requires-python = ">=3.9,<3.13" # Update also 'MINIMUM_PYTHON_VERSION' in src/ansys/mapdl/core/__init__.py
1212
license = {file = "LICENSE"}
1313
authors = [
1414
{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, 8)
39+
MINIMUM_PYTHON_VERSION = (3, 9)
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)