diff --git a/pyproject.toml b/pyproject.toml index 11f833408e..63787ff790 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "flit_core.buildapi" [project] # Check https://flit.readthedocs.io/en/latest/pyproject_toml.html for all available sections name = "ansys-dpf-core" -version = "0.8.2.dev0" +version = "0.9.1.dev0" description = "Data Processing Framework - Python Core " readme = "README.md" requires-python = ">=3.8, <4" diff --git a/requirements/requirements_dev.txt b/requirements/requirements_dev.txt index 89e3be69e9..5146bf629b 100644 --- a/requirements/requirements_dev.txt +++ b/requirements/requirements_dev.txt @@ -1,3 +1,3 @@ -ansys-dpf-gate==0.4.1.dev0 -ansys-dpf-gatebin==0.4.1.dev0 -ansys-grpc-dpf==0.8.1.dev0 +ansys-dpf-gate==0.4.2.dev0 +ansys-dpf-gatebin==0.4.2.dev0 +ansys-grpc-dpf==0.8.2.dev0 diff --git a/src/ansys/dpf/core/_version.py b/src/ansys/dpf/core/_version.py index da56419a63..72b22ba169 100644 --- a/src/ansys/dpf/core/_version.py +++ b/src/ansys/dpf/core/_version.py @@ -1,6 +1,6 @@ """Version for ansys-dpf-core""" # major, minor, patch -version_info = 0, 8, 2, "dev0" +version_info = 0, 9, 1, "dev0" # Nice string for the version __version__ = ".".join(map(str, version_info)) @@ -26,4 +26,5 @@ "6.1": "2023R2", "6.2": "2023R2", "7.0": "2024R1", + "7.1": "2024R1", }