Skip to content

Commit e3a0ca2

Browse files
committed
Merge branch 'main' into release/2023.2
2 parents 2d80e3a + 070fd63 commit e3a0ca2

File tree

4 files changed

+17
-15
lines changed

4 files changed

+17
-15
lines changed

.pre-commit-config.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,6 @@ repos:
3838

3939
# this validates our github workflow files
4040
- repo: https://github.com/python-jsonschema/check-jsonschema
41-
rev: 0.22.0
41+
rev: 0.23.0
4242
hooks:
4343
- id: check-github-workflows

README.rst

+2
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ The ``pyansys`` metapackage ensures compatibility between these PyAnsys packages
4646
- `PyFluent-Visualization <https://visualization.fluent.docs.pyansys.com/>`_: Pythonic interface to visualize Ansys Fluent simulations.
4747
- `PyMAPDL <https://mapdl.docs.pyansys.com/>`_: Pythonic interface to Ansys MAPDL (Mechanical APDL).
4848
- `PyMAPDL Reader <https://reader.docs.pyansys.com/>`_: Pythonic interface to read legacy MAPDL result files (MAPDL 14.5 and later).
49+
- `PyMechanical <https://mechanical.docs.pyansys.com/>`_: Pythonic interface to Ansys Mechanical.
4950
- `PyMotorCAD <https://motorcad.docs.pyansys.com/>`_: Pythonic interface to Ansys Motor-CAD.
5051
- `PyOptislang <https://optislang.docs.pyansys.com/>`_: Pythonic interface to Ansys Optislang.
5152
- `PyPIM <https://pypim.docs.pyansys.com/>`_: Pythonic interface to communicate with the Ansys PIM (Product Instance Management) API.
@@ -70,6 +71,7 @@ By default, the PyAnsys metapackage installs these core modules:
7071
- `PyDPF Composites`_
7172
- `PyFluent`_
7273
- `PyMAPDL`_
74+
- `PyMechanical`_
7375
- `PyMotorCAD`_
7476
- `PyOptislang`_
7577
- `PyPIM`_
-18 KB
Loading

pyproject.toml

+14-14
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@ classifiers = [
2727
dependencies = [
2828
"importlib-metadata>=4.0,<5; python_version<='3.8'",
2929
"ansys-mapdl-core==0.64.1",
30-
"ansys-dpf-core==0.8.0",
30+
"ansys-dpf-core==0.8.1",
3131
"ansys-dpf-post==0.4.0",
3232
"ansys-dpf-gate==0.3.1",
3333
"ansys-dpf-composites==0.2b2",
34-
"ansys-fluent-core==0.12.5",
35-
"pyaedt==0.6.70",
36-
"ansys-platform-instancemanagement==1.0.3",
34+
"ansys-fluent-core==0.13.1",
35+
"pyaedt==0.6.75",
36+
"ansys-platform-instancemanagement==1.1.1",
3737
"ansys-grantami-bomanalytics==1.1.3",
3838
"ansys-openapi-common==1.2.1",
3939
"ansys-seascape==0.2.0",
@@ -43,26 +43,26 @@ dependencies = [
4343
"ansys-motorcad-core==0.1.3",
4444
"ansys-math-core==0.1.1",
4545
"ansys-optislang-core==0.2.0",
46-
"ansys-mechanical-core==0.7.1",
46+
"ansys-mechanical-core==0.8.0",
4747
]
4848

4949
[project.optional-dependencies]
5050
mapdl-all = [
51-
"ansys-mapdl-reader==0.52.11",
51+
"ansys-mapdl-reader==0.52.13",
5252
]
5353
fluent-all = [
54-
"ansys-fluent-visualization==0.6.0",
55-
"ansys-fluent-parametric==0.6.1",
54+
"ansys-fluent-visualization==0.7.1",
55+
"ansys-fluent-parametric==0.7.1",
5656
]
5757
all = [
58-
"ansys-mapdl-reader==0.52.11",
59-
"ansys-fluent-visualization==0.6.0",
60-
"ansys-fluent-parametric==0.6.1",
58+
"ansys-mapdl-reader==0.52.13",
59+
"ansys-fluent-visualization==0.7.1",
60+
"ansys-fluent-parametric==0.7.1",
6161
]
6262
doc = [
63-
"Sphinx==5.3.0",
64-
"ansys-sphinx-theme==0.9.7",
65-
"sphinx-copybutton==0.5.1",
63+
"Sphinx==6.2.1", # BLOCKED BY sphinx-design - Cannot upgrade to Sphinx 7 for now
64+
"ansys-sphinx-theme==0.9.9",
65+
"sphinx-copybutton==0.5.2",
6666
"sphinx-design==0.4.1",
6767
]
6868

0 commit comments

Comments
 (0)