Skip to content

Commit ffc1c09

Browse files
authored
FEAT: Dropping Python 3.7 support (#228)
1 parent e5adc8c commit ffc1c09

File tree

4 files changed

+8
-9
lines changed

4 files changed

+8
-9
lines changed

.github/workflows/ci-build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
fail-fast: false
4747
matrix:
4848
os: [windows-latest, ubuntu-latest]
49-
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
49+
python-version: ['3.8', '3.9', '3.10', '3.11']
5050

5151
steps:
5252
- uses: actions/checkout@v3
@@ -73,7 +73,7 @@ jobs:
7373
fail-fast: false
7474
matrix:
7575
os: [windows-latest, ubuntu-latest]
76-
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
76+
python-version: ['3.8', '3.9', '3.10', '3.11']
7777
extras-version: ['fluent-all', 'mapdl-all']
7878

7979
steps:
@@ -101,7 +101,7 @@ jobs:
101101
fail-fast: false
102102
matrix:
103103
os: [windows-latest, ubuntu-latest, macos-latest]
104-
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
104+
python-version: ['3.8', '3.9', '3.10', '3.11']
105105

106106
steps:
107107
- name: Build wheelhouse and perform smoke test

README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -130,15 +130,15 @@ the ``pyansys`` metapackage is downloading the wheelhouse archive from the
130130
`Releases Page <https://github.com/pyansys/pyansys/releases>`_ for your corresponding machine architecture.
131131

132132
Each wheelhouse archive contains all the Python wheels necessary to install the ``pyansys`` metapackage from
133-
scratch on Windows, Linux, and MacOS from Python 3.7 to 3.10. You can install this on an isolated system with
133+
scratch on Windows, Linux, and MacOS from Python 3.8 to 3.11. You can install this on an isolated system with
134134
a fresh Python installation or on a virtual environment.
135135

136-
For example, on Linux with Python 3.7, unzip the wheelhouse archive and install it with the following
136+
For example, on Linux with Python 3.8, unzip the wheelhouse archive and install it with the following
137137
commands:
138138

139139
.. code:: bash
140140
141-
unzip pyansys-v2023.1.dev0-wheelhouse-Linux-3.7-core.zip wheelhouse
141+
unzip pyansys-v2023.1.dev0-wheelhouse-Linux-3.8-core.zip wheelhouse
142142
pip install pyansys -f wheelhouse --no-index --upgrade --ignore-installed
143143
144144
If you're on Windows with Python 3.9, unzip to a wheelhouse directory and then install using

doc/source/getting_started.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ architecture.
8080

8181
Each wheelhouse archive contains all the Python wheels necessary to install
8282
``pyansys`` metapackage from scratch on Windows, Linux, and MacOS from Python
83-
3.7 to 3.10. You can install this on an isolated system with a fresh Python
83+
3.8 to 3.11. You can install this on an isolated system with a fresh Python
8484
installation or on a virtual environment.
8585

8686
For example, on Linux with Python 3.9, unzip the wheelhouse archive and install

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ name = "pyansys"
88
version = "2024.1.dev0"
99
description = "Pythonic interfaces to Ansys products"
1010
readme = "README.rst"
11-
requires-python = ">=3.7,<4"
11+
requires-python = ">=3.8,<4"
1212
license = {file = "LICENSE"}
1313
authors = [{name = "ANSYS, Inc.", email = "[email protected]"}]
1414
maintainers = [{name = "PyAnsys developers", email = "[email protected]"}]
@@ -18,7 +18,6 @@ classifiers = [
1818
"Topic :: Scientific/Engineering :: Information Analysis",
1919
"License :: OSI Approved :: MIT License",
2020
"Operating System :: OS Independent",
21-
"Programming Language :: Python :: 3.7",
2221
"Programming Language :: Python :: 3.8",
2322
"Programming Language :: Python :: 3.9",
2423
"Programming Language :: Python :: 3.10",

0 commit comments

Comments
 (0)