Skip to content

Commit ee476f0

Browse files
committed
bump version to 0.11.17
2 parents ce89912 + a88e0bd commit ee476f0

File tree

13 files changed

+34
-21
lines changed

13 files changed

+34
-21
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
update CHANGELOG for v0.11.15
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
update CHANGELOG for v0.11.16
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Bump the doc group across 1 directory with 3 updates

doc/changelog.d/1171.fixed.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Add `self._messages` to BUILDING_GALLERY section in app initialization

doc/changelog.d/1174.fixed.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Embedding message get test
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Bump plotly from 6.0.1 to 6.1.1 in the doc group
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Bump usd-core from 25.5 to 25.5.1

doc/source/changelog.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ This document contains the release notes for the project.
2525
- `#1162 <https://github.com/ansys/pymechanical/pull/1162>`_
2626

2727

28-
`0.11.15 <https://github.com/ansys/pymechanical/releases/tag/v0.11.15>`_ - May 08, 2025
28+
29+
`0.11.15 <https://github.com/ansys/pymechanical/releases/tag/v0.11.16>`_ - May 09, 2025
2930
=======================================================================================
3031

3132
.. tab-set::

pyproject.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "flit_core.buildapi"
55
[project]
66
# Check https://flit.readthedocs.io/en/latest/pyproject_toml.html for all available sections
77
name = "ansys-mechanical-core"
8-
version = "0.11.16"
8+
version = "0.11.17"
99
description = "A python wrapper for Ansys Mechanical"
1010
readme = "README.rst"
1111
requires-python = ">=3.10,<4.0"
@@ -57,18 +57,18 @@ tests = [
5757
]
5858
doc = [
5959
"sphinx==8.2.3",
60-
"ansys-sphinx-theme[autoapi,changelog]==1.4.2",
60+
"ansys-sphinx-theme[autoapi,changelog]==1.4.4",
6161
"grpcio==1.70.0",
6262
"imageio-ffmpeg==0.6.0",
6363
"imageio==2.37.0",
6464
"jupyter_sphinx==0.5.3",
6565
"jupyterlab>=3.2.8",
66-
"matplotlib==3.10.1",
67-
"numpy==2.2.5",
66+
"matplotlib==3.10.3",
67+
"numpy==2.2.6",
6868
"numpydoc==1.8.0",
6969
"pandas==2.2.3",
7070
"panel==1.6.1",
71-
"plotly==6.0.1",
71+
"plotly==6.1.1",
7272
"pypandoc==1.15",
7373
"pytest-sphinx==0.6.3",
7474
"pythreejs==2.4.2",
@@ -85,11 +85,11 @@ doc = [
8585
# Viz option will be removed in future versions
8686
viz = [
8787
"ansys-tools-visualization-interface>=0.2.6",
88-
"usd-core==25.5",
88+
"usd-core==25.5.1",
8989
]
9090
graphics = [
9191
"ansys-tools-visualization-interface>=0.2.6",
92-
"usd-core==25.5",
92+
"usd-core==25.5.1",
9393
]
9494
rpc = [
9595
"rpyc==6.0.2",

src/ansys/mechanical/core/embedding/app.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,9 @@ def __init__(self, db_file=None, private_appdata=False, **kwargs):
189189
# Get the globals dictionary from kwargs
190190
globals = kwargs.get("globals")
191191

192+
# Set messages to None before BUILDING_GALLERY check
193+
self._messages = None
194+
192195
# If the building gallery flag is set, we need to share the instance
193196
# This can apply to running the `make -C doc html` command
194197
if BUILDING_GALLERY:
@@ -240,7 +243,6 @@ def __init__(self, db_file=None, private_appdata=False, **kwargs):
240243

241244
self._updated_scopes: typing.List[typing.Dict[str, typing.Any]] = []
242245
self._subscribe()
243-
self._messages = None
244246
if globals:
245247
self.update_globals(globals)
246248

0 commit comments

Comments
 (0)