Skip to content

Commit 5ee90d5

Browse files
authored
Merge branch 'main' into maint/ubuntu_latest
2 parents 459f033 + 40b8c48 commit 5ee90d5

File tree

9 files changed

+592
-25
lines changed

9 files changed

+592
-25
lines changed

.github/workflows/labeler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929

3030
# Label based on modified files
3131
- name: Label based on changed files
32-
uses: actions/labeler@v5
32+
uses: actions/labeler@v6
3333
with:
3434
repo-token: "${{ secrets.GITHUB_TOKEN }}"
3535

.github/workflows/nightly-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- uses: actions/checkout@v5
2020

2121
- name: Set up Python
22-
uses: actions/setup-python@v5
22+
uses: actions/setup-python@v6
2323
with:
2424
python-version: ${{ env.MAIN_PYTHON_VERSION }}
2525

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ repos:
22

33

44
- repo: https://github.com/astral-sh/ruff-pre-commit
5-
rev: v0.12.9
5+
rev: v0.13.1
66
hooks:
77
- id: ruff-check
88
- id: ruff-format
99

1010
- repo: https://github.com/adamchainz/blacken-docs
11-
rev: 1.19.1
11+
rev: 1.20.0
1212
hooks:
1313
- id: blacken-docs
1414
additional_dependencies: [black==24.8.0]
@@ -26,7 +26,7 @@ repos:
2626
- id: debug-statements
2727

2828
- repo: https://github.com/python-jsonschema/check-jsonschema
29-
rev: 0.33.3
29+
rev: 0.34.0
3030
hooks:
3131
- id: check-github-workflows
3232
name: "Check GitHub workflows"

doc/Makefile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,9 @@ help:
1919
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
2020

2121

22-
# customized clean due to examples gallery
22+
# customized clean
2323
clean:
24-
rm -rf build
25-
rm -rf source/examples/
24+
rm -rf _build
2625

2726
# customized pdf fov svg format images
2827
pdf:

doc/source/how-to/compatibility.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ introduced in an earlier version are also supported in later versions. Suppressi
3434
a feature would lead to a backward compatibility issue.
3535

3636
Because the same type of issues can happen with the PyAnsys servers wrapping
37-
Ansys products, creating a similar *maximum version* data structure is
38-
is necessary. While there are no such implementations yet, it should work
39-
in the same way as the minimum version data structure.
37+
Ansys products, creating a similar *maximum version* data structure is necessary.
38+
While there are no such implementations yet, it should work in the same way as the
39+
minimum version data structure.
4040

4141
``version_requires`` decorator
4242
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

0 commit comments

Comments
 (0)