From 5fe273b0a69720be091850cce24902c385ba0cbc Mon Sep 17 00:00:00 2001 From: Prithwish Mukherjee Date: Fri, 21 Jun 2024 12:29:22 +0530 Subject: [PATCH 1/2] build: Bump version to v0.11.dev0 --- pyproject.toml | 5 ++--- tests/test_metadata.py | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index fa072a17..7cee3c2d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] # Check https://python-poetry.org/docs/pyproject/ for all available sections name = "ansys-fluent-visualization" -version = "0.10.dev0" +version = "0.11.dev0" description = "A python wrapper for ansys Fluent visualization" license = "MIT" authors = ["ANSYS, Inc. "] @@ -25,11 +25,10 @@ packages = [ [tool.poetry.dependencies] python = ">=3.9,<4.0" importlib-metadata = {version = "^4.0", python = "<3.9"} -ansys-fluent-core = "~=0.21.dev1" +ansys-fluent-core = "~=0.22.dev0" vtk = ">=9.3.0.rc0" pyvista = ">=0.39.0" pyvistaqt = ">=0.7.0" -pyside6 = ">=6.2.3" matplotlib = ">=3.5.1" requests = "==2.31.0" diff --git a/tests/test_metadata.py b/tests/test_metadata.py index 4aea85c9..239d8b47 100644 --- a/tests/test_metadata.py +++ b/tests/test_metadata.py @@ -2,4 +2,4 @@ def test_pkg_version(): - assert __version__ == "0.10.dev0" + assert __version__ == "0.11.dev0" From 815fe6703e3f16760c5b0869defd56609d10436f Mon Sep 17 00:00:00 2001 From: Prithwish Mukherjee Date: Thu, 5 Sep 2024 10:04:12 +0530 Subject: [PATCH 2/2] Fix version of dependencies. --- pyproject.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 558457ee..5cf30f1e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,10 +26,10 @@ packages = [ python = ">=3.10,<4.0" importlib-metadata = {version = "^4.0", python = "<3.9"} ansys-fluent-core = "~=0.25.dev1" -vtk = ">=9.3.0.rc0" -pyvista = ">=0.39.0" -pyvistaqt = ">=0.7.0" -matplotlib = ">=3.5.1" +pyvista = "~=0.44.1" +pyvistaqt = "~=0.11.1" +pyside6 = "~=6.7.2" +matplotlib = ">=3.9.0" [tool.poetry.urls] "Documentation" = "https://visualization.fluent.docs.pyansys.com/"