Skip to content

Commit 2c9c5d3

Browse files
mkundu1raph-luc
andauthored
Bump version 0.8.0 (#353)
Co-authored-by: Raphael Luciano <[email protected]>
1 parent b907538 commit 2c9c5d3

File tree

7 files changed

+12
-13
lines changed

7 files changed

+12
-13
lines changed

.github/workflows/ci_cd.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
runs-on: ubuntu-latest
3232
steps:
3333
- uses: actions/checkout@v3
34-
34+
3535
- name: Running Vale
3636
uses: errata-ai/vale-action@reviewdog
3737
env:
@@ -50,7 +50,7 @@ jobs:
5050
strategy:
5151
matrix:
5252
os: [windows-latest, ubuntu-latest]
53-
python-version: ['3.8', '3.9', '3.10', '3.11']
53+
python-version: ['3.9', '3.10', '3.11']
5454
fail-fast: false
5555

5656
steps:
@@ -155,7 +155,7 @@ jobs:
155155
- name: Set up Python
156156
uses: actions/setup-python@v4
157157
with:
158-
python-version: 3.8
158+
python-version: 3.9
159159

160160
- name: Add version information
161161
run: make version-info

.github/workflows/nightly-test-run.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
matrix:
1414
os: [windows-latest, ubuntu-latest]
15-
python-version: ['3.8', '3.9', '3.10', '3.11']
15+
python-version: ['3.9', '3.10', '3.11']
1616
fail-fast: false
1717

1818
steps:

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ the project support team, email `[email protected] <[email protected]>
5050

5151
Installation
5252
------------
53-
The ``ansys-fluent-visualization`` package supports Python 3.8 through Python
53+
The ``ansys-fluent-visualization`` package supports Python 3.9 through Python
5454
3.11 on Windows and Linux.
5555

5656
If you are using Python 3.10, download and install the wheel file for the ``vtk`` package from

doc/source/getting_started/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ page on the Ansys website.
1313
***************
1414
Install package
1515
***************
16-
The ``ansys-fluent-visualization`` package supports Python 3.8 through
16+
The ``ansys-fluent-visualization`` package supports Python 3.9 through
1717
Python 3.11 on Windows and Linux.
1818

1919
Install the latest release from `PyPi

examples/00-postprocessing/post_processing_exhaust_manifold.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@
3131
# files.
3232

3333
import_case = examples.download_file(
34-
file_name="exhaust_system.cas.h5", directory="pyfluent/exhaust_system"
34+
"exhaust_system.cas.h5", directory="pyfluent/exhaust_system"
3535
)
3636

3737
import_data = examples.download_file(
38-
file_name="exhaust_system.dat.h5", directory="pyfluent/exhaust_system"
38+
"exhaust_system.dat.h5", directory="pyfluent/exhaust_system"
3939
)
4040

4141
solver_session = pyfluent.launch_fluent(

pyproject.toml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "poetry.core.masonry.api"
55
[tool.poetry]
66
# Check https://python-poetry.org/docs/pyproject/ for all available sections
77
name = "ansys-fluent-visualization"
8-
version = "0.8.dev1"
8+
version = "0.8.0"
99
description = "A python wrapper for ansys Fluent visualization"
1010
license = "MIT"
1111
authors = ["ANSYS, Inc. <[email protected]>"]
@@ -23,9 +23,8 @@ packages = [
2323
]
2424

2525
[tool.poetry.dependencies]
26-
python = ">=3.8,<4.0"
27-
importlib-metadata = {version = "^4.0", python = "<3.8"}
28-
ansys-fluent-core = "~=0.14.dev0"
26+
python = ">=3.9,<4.0"
27+
ansys-fluent-core = "~=0.18"
2928
vtk = ">=9.3.0.rc0"
3029
pyvista = ">=0.39.0"
3130
pyvistaqt = ">=0.7.0"

tests/test_metadata.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33

44
def test_pkg_version():
5-
assert __version__ == "0.8.dev1"
5+
assert __version__ == "0.8.0"

0 commit comments

Comments
 (0)