From 64b865ccf38e45a7bc44621b37adb0c0ab850959 Mon Sep 17 00:00:00 2001 From: German Date: Mon, 1 Apr 2024 20:24:10 +0200 Subject: [PATCH 1/2] Update minimal version --- src/ansys/mapdl/core/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ansys/mapdl/core/__init__.py b/src/ansys/mapdl/core/__init__.py index aadc1dce2b..ab657eb987 100644 --- a/src/ansys/mapdl/core/__init__.py +++ b/src/ansys/mapdl/core/__init__.py @@ -36,7 +36,7 @@ os.makedirs(USER_DATA_PATH) DEPRECATING_MINIMUM_PYTHON_VERSION = True -MINIMUM_PYTHON_VERSION = (3, 8) +MINIMUM_PYTHON_VERSION = (3, 9) first_time_file = os.path.join(USER_DATA_PATH, ".firstime") if not os.path.exists(first_time_file): # pragma: no cover From 3e6e35cf46512e3a6fd2ed15810e8e11cff07856 Mon Sep 17 00:00:00 2001 From: German Date: Mon, 1 Apr 2024 20:25:09 +0200 Subject: [PATCH 2/2] Add info in pyproject.toml --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 09cc519ba1..29ef4d5e34 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ name = "ansys-mapdl-core" version = "0.69.dev0" description = "A Python wrapper for Ansys MAPDL." readme = "README.md" -requires-python = ">=3.9,<3.13" +requires-python = ">=3.9,<3.13" # Update also 'MINIMUM_PYTHON_VERSION' in src/ansys/mapdl/core/__init__.py license = {file = "LICENSE"} authors = [ {name = "Ansys, Inc.", email = "pyansys.maintainers@ansys.com"},