Skip to content

Commit 048849c

Browse files
committed
Merge branch 'main' into release/2024.2
2 parents feb98ea + 3b8f4b8 commit 048849c

File tree

8 files changed

+53
-50
lines changed

8 files changed

+53
-50
lines changed

.github/workflows/ci-build.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
steps:
2828
- name: PyAnsys Vulnerability Check (on PRs)
2929
if: github.event_name == 'pull_request'
30-
uses: ansys/actions/check-vulnerabilities@v5
30+
uses: ansys/actions/check-vulnerabilities@v6
3131
with:
3232
python-version: ${{ env.MAIN_PYTHON_VERSION }}
3333
python-package-name: ${{ env.PACKAGE_NAME }}
@@ -36,7 +36,7 @@ jobs:
3636

3737
- name: PyAnsys Vulnerability Check (any other case)
3838
if: github.event_name != 'pull_request'
39-
uses: ansys/actions/check-vulnerabilities@v5
39+
uses: ansys/actions/check-vulnerabilities@v6
4040
with:
4141
python-version: ${{ env.MAIN_PYTHON_VERSION }}
4242
python-package-name: ${{ env.PACKAGE_NAME }}
@@ -57,7 +57,7 @@ jobs:
5757
runs-on: ubuntu-latest
5858
steps:
5959
- name: PyAnsys documentation style checks
60-
uses: ansys/actions/doc-style@v5
60+
uses: ansys/actions/doc-style@v6
6161
with:
6262
token: ${{ secrets.GITHUB_TOKEN }}
6363

@@ -127,7 +127,7 @@ jobs:
127127

128128
steps:
129129
- name: Build wheelhouse and perform smoke test
130-
uses: ansys/actions/build-wheelhouse@v5
130+
uses: ansys/actions/build-wheelhouse@v6
131131
with:
132132
library-name: ${{ env.PACKAGE_NAME }}
133133
operating-system: ${{ runner.os }}
@@ -153,7 +153,7 @@ jobs:
153153

154154
steps:
155155
- name: Build documentation
156-
uses: ansys/actions/doc-build@v5
156+
uses: ansys/actions/doc-build@v6
157157
with:
158158
python-version: ${{ env.MAIN_PYTHON_VERSION }}
159159
dependencies: "build-essential zip pandoc texlive-latex-extra latexmk texlive-pstricks"
@@ -165,7 +165,7 @@ jobs:
165165
needs: [package]
166166
steps:
167167
- name: Deploy the latest documentation
168-
uses: ansys/actions/doc-deploy-dev@v5
168+
uses: ansys/actions/doc-deploy-dev@v6
169169
with:
170170
cname: ${{ env.DOCUMENTATION_CNAME }}
171171
token: ${{ secrets.GITHUB_TOKEN }}
@@ -182,7 +182,7 @@ jobs:
182182
needs: [doc-deploy-dev]
183183
steps:
184184
- name: "Deploy the dev documentation index"
185-
uses: ansys/actions/doc-deploy-index@v5
185+
uses: ansys/actions/doc-deploy-index@v6
186186
with:
187187
cname: ${{ env.DOCUMENTATION_CNAME }}/version/dev
188188
index-name: pyansys-vdev
@@ -195,7 +195,7 @@ jobs:
195195
needs: [docs-build, smoke-tests-core]
196196
steps:
197197
- name: Build library source and wheel artifacts
198-
uses: ansys/actions/build-library@v5
198+
uses: ansys/actions/build-library@v6
199199
with:
200200
library-name: ${{ env.PACKAGE_NAME }}
201201
python-version: ${{ env.MAIN_PYTHON_VERSION }}
@@ -207,14 +207,14 @@ jobs:
207207
runs-on: ubuntu-latest
208208
steps:
209209
- name: Release to PyPI repository
210-
uses: ansys/actions/release-pypi-public@v5
210+
uses: ansys/actions/release-pypi-public@v6
211211
with:
212212
library-name: ${{ env.PACKAGE_NAME }}
213213
twine-username: __token__
214214
twine-token: ${{ secrets.PYPI_TOKEN }}
215215

216216
- name: Release to GitHub
217-
uses: ansys/actions/release-github@v5
217+
uses: ansys/actions/release-github@v6
218218
with:
219219
library-name: ${{ env.PACKAGE_NAME }}
220220
additional-artifacts: 'all-deps-Linux-3.9 all-deps-Linux-3.10 all-deps-Linux-3.11 all-deps-Linux-3.12 all-deps-Windows-3.9 all-deps-Windows-3.10 all-deps-Windows-3.11 all-deps-Windows-3.12 all-deps-macOS-3.9 all-deps-macOS-3.10 all-deps-macOS-3.11 all-deps-macOS-3.12'
@@ -225,7 +225,7 @@ jobs:
225225
needs: [release]
226226
steps:
227227
- name: Deploy the latest release documentation
228-
uses: ansys/actions/doc-deploy-stable@v5
228+
uses: ansys/actions/doc-deploy-stable@v6
229229
with:
230230
cname: ${{ env.DOCUMENTATION_CNAME }}
231231
token: ${{ secrets.GITHUB_TOKEN }}
@@ -258,7 +258,7 @@ jobs:
258258
echo "VERSION_MEILI=$VERSION_MEILI" >> $GITHUB_ENV
259259
260260
- name: "Deploy the latest documentation index"
261-
uses: ansys/actions/doc-deploy-index@v5
261+
uses: ansys/actions/doc-deploy-index@v6
262262
with:
263263
cname: ${{ env.DOCUMENTATION_CNAME }}/version/${{ env.VERSION }}
264264
index-name: pyansys-v${{ env.VERSION_MEILI }}

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
repos:
22

33
- repo: https://github.com/psf/black
4-
rev: 24.3.0
4+
rev: 24.4.0
55
hooks:
66
- id: black
77

@@ -38,7 +38,7 @@ repos:
3838

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

doc/.vale.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,5 @@ BasedOnStyles = Vale, Google
2929

3030
# Removing Google-specific rule - Not applicable under some circumstances
3131
Google.WordList = NO
32-
Google.Colons = NO
32+
Google.Colons = NO
33+
Vale.Terms = NO

doc/source/conf.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,3 +102,6 @@
102102
linkcheck_ignore = [
103103
r"https://www.ansys.com/.*",
104104
]
105+
106+
# User agent
107+
user_agent = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36 Edg/123.0.2420.81" # noqa: E501

doc/styles/.gitignore

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*
2-
!Vocab
3-
!Vocab/**
1+
/*
2+
!**/ANSYS/accept.txt
3+
!**/ANSYS/reject.txt
44
!.gitignore
Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
ANSYS
2-
Ansys
3-
ansys
4-
API
5-
postprocessing
6-
PyAnsys
7-
Pythonic
8-
PyAEDT
9-
DPF
10-
PyMAPDL
11-
PyMAPDL Reader
12-
PyDPF - Core
13-
PyDPF - Post
14-
PyDPF - Composites
15-
PyDPF
16-
PyFluent
17-
PyPIM
18-
metapackage
19-
PyTwin
20-
toolkits
1+
ANSYS
2+
Ansys
3+
ansys
4+
API
5+
postprocessing
6+
PyAnsys
7+
Pythonic
8+
PyAEDT
9+
DPF
10+
PyMAPDL
11+
PyMAPDL Reader
12+
PyDPF - Core
13+
PyDPF - Post
14+
PyDPF - Composites
15+
PyDPF
16+
PyFluent
17+
PyPIM
18+
metapackage
19+
PyTwin
20+
toolkits

pyproject.toml

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -29,34 +29,33 @@ classifiers = [
2929
dependencies = [
3030
"ansys-acp-core==0.1b1",
3131
"ansys-additive-core==0.17.2",
32-
"ansys-dpf-composites==0.4.0",
32+
"ansys-dpf-composites==0.4.1",
3333
"ansys-dpf-core==0.12.0",
3434
"ansys-dpf-post==0.8.0",
35-
"ansys-dpf-gate==0.4.1",
3635
"ansys-dyna-core==0.4.15",
37-
"ansys-dynamicreporting-core==0.5.1",
36+
"ansys-dynamicreporting-core==0.6.0",
3837
"ansys-edb-core==0.1.4",
3938
"ansys-fluent-core==0.20.0",
40-
"ansys-geometry-core==0.4.14",
39+
"ansys-geometry-core==0.5.0",
4140
"ansys-hps-client==0.8.0",
4241
"ansys-mapdl-core==0.68.1",
43-
"ansys-math-core==0.1.3",
42+
"ansys-math-core==0.1.5",
4443
"ansys-mechanical-core==0.10.9",
4544
"ansys-meshing-prime==0.5.1",
4645
"ansys-modelcenter-workflow==0.1.1",
4746
"ansys-motorcad-core==0.4.3",
4847
"ansys-openapi-common==1.5.1",
4948
"ansys-optislang-core==0.6.3",
5049
"ansys-platform-instancemanagement==1.1.2",
51-
"ansys-pyensight-core==0.7.11",
50+
"ansys-pyensight-core==0.8.0",
5251
"ansys-rocky-core==0.1.0",
5352
"ansys-seascape==0.2.0",
54-
"ansys-sherlock-core==0.5.0",
55-
"ansys-simai-core==0.1.4",
53+
"ansys-sherlock-core==0.6.0",
54+
"ansys-simai-core==0.1.5",
5655
"ansys-systemcoupling-core==0.4.1",
5756
"ansys-turbogrid-core==0.4.0",
58-
"pyaedt==0.8.7",
59-
"pyedb==0.7.1",
57+
"pyaedt==0.8.9",
58+
"pyedb==0.8.0",
6059
"pygranta==2024.1.0",
6160
"pytwin==0.6.0",
6261
]
@@ -69,7 +68,7 @@ fluent-all = [
6968
]
7069
tools = [
7170
"ansys-units==0.3.2",
72-
"ansys-tools-path==0.5.1",
71+
"ansys-tools-path==0.5.2",
7372
"pyansys-tools-report==0.7.0",
7473
"pyansys-tools-versioning==0.5.0",
7574
]
@@ -81,7 +80,7 @@ all = [
8180
"ansys-fluent-parametric==0.10.0",
8281
# TOOLS
8382
"ansys-units==0.3.2",
84-
"ansys-tools-path==0.5.1",
83+
"ansys-tools-path==0.5.2",
8584
# "ansys-tools-protoc-helper==0.4.0; python_version<='3.10'",
8685
"pyansys-tools-report==0.7.0",
8786
"pyansys-tools-versioning==0.5.0",

0 commit comments

Comments
 (0)