Skip to content

Commit a0f6c2e

Browse files
committed
build: Bump version to v0.18.dev0
1 parent f16be85 commit a0f6c2e

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

.github/workflows/ci_cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
needs: docs-style
7272
runs-on: [self-hosted, pyfluent]
7373
env:
74-
DOC_DEPLOYMENT_IMAGE_TAG: v24.2.0
74+
DOC_DEPLOYMENT_IMAGE_TAG: v25.1.0
7575
DOCUMENTATION_CNAME: 'visualization.fluent.docs.pyansys.com'
7676

7777
steps:

doc/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ def _stop_fluent_container(gallery_conf, fname):
163163
# Pattern to search for example files
164164
"filename_pattern": r"\.py",
165165
# Disabled example scripts
166-
"ignore_pattern": r"script_manifold\.py|"
166+
"ignore_pattern": r"script_manifold\.py|updated_exhaust_manifold_example\.py|"
167167
r"updated_script_manifold_example\.py|flycheck*",
168168
# Remove the "Download all examples" button from the top level gallery
169169
"download_all_examples": False,

pyproject.toml

Lines changed: 1 addition & 1 deletion
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.17.dev0"
8+
version = "0.18.dev0"
99
description = "A python wrapper for ansys Fluent visualization"
1010
license = "MIT"
1111
authors = ["ANSYS, Inc. <[email protected]>"]

src/ansys/fluent/visualization/matplotlib/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
import warnings
2626

27-
from ansys.fluent.core.warnings import PyFluentDeprecationWarning
27+
from ansys.fluent.core.pyfluent_warnings import PyFluentDeprecationWarning
2828

2929
warnings.warn(
3030
"'matplotlib' is deprecated. Use 'plotter' instead.",

src/ansys/fluent/visualization/pyvista/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
import warnings
2626

27-
from ansys.fluent.core.warnings import PyFluentDeprecationWarning
27+
from ansys.fluent.core.pyfluent_warnings import PyFluentDeprecationWarning
2828

2929
warnings.warn(
3030
"'pyvista' is deprecated. Use 'graphics' instead.",

tests/test_metadata.py

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

2525

2626
def test_pkg_version():
27-
assert __version__ == "0.17.dev0"
27+
assert __version__ == "0.18.dev0"

0 commit comments

Comments
 (0)