Skip to content

Commit

Permalink
Merge branch 'main' into dependabot/pip/testing-88b6d30bfe
Browse files Browse the repository at this point in the history
  • Loading branch information
clatapie authored Mar 15, 2024
2 parents a10b211 + ee9e382 commit 56e5d0c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .devcontainer/codespaces-dev/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
ansys-dpf-core==0.10.1
ansys-dpf-core==0.11.0
autopep8==2.0.4
matplotlib==3.8.3
scipy==1.12.0
pandas==2.2.1
pyiges[full]==0.3.1
pytest==8.0.2
pytest-cov==4.1.0
pyvista==0.43.3
pyvista==0.43.4
pyansys-tools-report==0.7.0
vtk==9.3.0
pytest-rerunfailures==13.0
Expand Down
6 changes: 3 additions & 3 deletions .devcontainer/codespaces-docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
sphinx==7.2.6
ansys-dpf-core==0.10.1
ansys-dpf-core==0.11.0
ansys-mapdl-reader==0.53.0
ansys-sphinx-theme==0.14.1
grpcio==1.62.0
Expand All @@ -10,14 +10,14 @@ jupyterlab>=3.2.8
matplotlib==3.8.3
numpydoc==1.6.0
pandas==2.2.1
plotly==5.19.0
plotly==5.20.0
pyiges[full]==0.3.1
pypandoc==1.13
pytest-sphinx==0.6.0
pythreejs==2.4.2
pyvista[trame]==0.43.3
sphinx-autobuild==2024.2.4
sphinx-autodoc-typehints==1.25.2
sphinx-autodoc-typehints==2.0.0
sphinx-copybutton==0.5.2
sphinx-gallery==0.15.0
sphinxcontrib-websupport==1.2.7
Expand Down
4 changes: 2 additions & 2 deletions .devcontainer/devcontainer-local/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
ansys-dpf-core==0.10.1
ansys-dpf-core==0.11.0
autopep8==2.0.4
matplotlib==3.8.3
scipy==1.12.0
pandas==2.2.1
pyiges[full]==0.3.1
pytest==8.0.2
pytest-cov==4.1.0
pyvista==0.43.3
pyvista==0.43.4
pyansys-tools-report==0.7.0
vtk==9.3.0
pytest-rerunfailures==13.0
Expand Down
2 changes: 1 addition & 1 deletion src/ansys/mapdl/core/mapdl_grpc.py
Original file line number Diff line number Diff line change
Expand Up @@ -1084,7 +1084,7 @@ def _kill_server(self):
pass

if (
self._version >= 24.2
self._version and self._version >= 24.2
): # We can't use the non-cached version because of recursion error.
# self.run("/EXIT,NOSAVE,,,,,SERVER")
self._ctrl("EXIT")
Expand Down

0 comments on commit 56e5d0c

Please sign in to comment.