Skip to content

Commit

Permalink
Drop support for python 3.8 (#2104)
Browse files Browse the repository at this point in the history
  • Loading branch information
prmukherj authored Oct 10, 2023
1 parent d941398 commit 5a3c5f3
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 10 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ env:
PACKAGE_NAME: 'ansys-fluent-core'
PACKAGE_NAMESPACE: 'ansys.fluent.core'
ANSYSLMD_LICENSE_FILE: ${{ format('1055@{0}', secrets.LICENSE_SERVER) }}
MAIN_PYTHON_VERSION: '3.9'
PYFLUENT_TIMEOUT_FORCE_EXIT: 30
PYFLUENT_LAUNCH_CONTAINER: 1
PYFLUENT_LOGGING: 'DEBUG'
Expand Down Expand Up @@ -73,7 +74,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ['3.8', '3.9', '3.10', '3.11']
python-version: ['3.9', '3.10', '3.11']
should-release:
- ${{ github.event_name == 'push' && contains(github.ref, 'refs/tags') }}
exclude:
Expand Down Expand Up @@ -204,7 +205,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: 3.8
python-version: ${{ env.MAIN_PYTHON_VERSION }}

- name: Cache pip
uses: actions/cache@v3
Expand Down Expand Up @@ -376,7 +377,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: 3.8
python-version: ${{ env.MAIN_PYTHON_VERSION }}

- name: Download package
uses: actions/download-artifact@v3
Expand Down Expand Up @@ -443,7 +444,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: 3.8
python-version: ${{ env.MAIN_PYTHON_VERSION }}

- name: Cache pip
uses: actions/cache@v3
Expand Down Expand Up @@ -505,7 +506,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.8
python-version: ${{ env.MAIN_PYTHON_VERSION }}

- uses: actions/download-artifact@v3

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run-custom-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: 3.8
python-version: 3.9

- name: Cache pip
uses: actions/cache@v3
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ To reach the project support team, email `[email protected] <pyansys.core@a

Installation
------------
The ``ansys-fluent-core`` package supports Python 3.8 through Python
The ``ansys-fluent-core`` package supports Python 3.9 through Python
3.11 on Windows and Linux.

Install the latest release from `PyPI
Expand Down
2 changes: 1 addition & 1 deletion doc/source/getting_started/faqs.rst
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ all PyFluent packages in a Python *virtual environment*:
Which version of Python should you use?
---------------------------------------
PyFluent supports Python 3.8 through Python 3.11 on Windows and Linux. Python
PyFluent supports Python 3.9 through Python 3.11 on Windows and Linux. Python
3.10 is shipped with Ansys 2023 R2 and later. For example, in a 2023 R2 Windows
installation, the executable file Python 3.10 is typically located at:
``C:\Program Files\ANSYS Inc\v232\commonfiles\CPython\3_10\winx64\Release\python.exe``.
Expand Down
2 changes: 1 addition & 1 deletion doc/source/getting_started/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Installation
============

The ``ansys-fluent-core`` package supports Python 3.8 through
The ``ansys-fluent-core`` package supports Python 3.9 through
Python 3.11 on Windows and Linux.

.. note::
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
"Operating System :: OS Independent",
],
url="https://github.com/ansys/pyfluent",
python_requires=">=3.8",
python_requires=">=3.9",
install_requires=install_requires,
project_urls={
"Documentation": "https://fluent.docs.pyansys.com/",
Expand Down

0 comments on commit 5a3c5f3

Please sign in to comment.