Skip to content

Commit 8e964ce

Browse files
committed
Merge branch 'main' into release/0.6
2 parents 68a3e53 + 9bc772a commit 8e964ce

26 files changed

+69
-29
lines changed

.github/workflows/ci_cd.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ jobs:
285285
run:
286286
echo "ANSRV_GEO_LICENSE_SERVER=${{ secrets.INTERNAL_LICENSE_SERVER }}" | Out-File -FilePath $env:GITHUB_ENV -Append
287287

288-
- name: Start Geometry service
288+
- name: Start Geometry service and verify start
289289
run: docker run --detach --name ${{ env.GEO_CONT_NAME }} -e LICENSE_SERVER=${{ env.ANSRV_GEO_LICENSE_SERVER }} -p ${{ env.ANSRV_GEO_PORT }}:50051 ${{ env.ANSRV_GEO_IMAGE_WINDOWS_TAG }}
290290

291291
- name: Run Ansys documentation building action
@@ -310,6 +310,7 @@ jobs:
310310
docker rm $dockerContainers
311311
}
312312
313+
313314
# =================================================================================================
314315
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ RUNNING ON SELF-HOSTED RUNNER ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
315316
# =================================================================================================

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ repos:
2323
- id: isort
2424

2525
- repo: https://github.com/PyCQA/flake8
26-
rev: 7.0.0
26+
rev: 7.1.0
2727
hooks:
2828
- id: flake8
2929

@@ -64,7 +64,7 @@ repos:
6464

6565
# this validates our github workflow files
6666
- repo: https://github.com/python-jsonschema/check-jsonschema
67-
rev: 0.28.4
67+
rev: 0.28.5
6868
hooks:
6969
- id: check-github-workflows
7070

doc/Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,8 @@ pdf:
3232

3333
# Build HTML files and generate examples as .py files
3434
html:
35-
@$(SPHINXBUILD) -M linkcheck "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
3635
@$(SPHINXBUILD) -M html "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
36+
37+
# Linkcheck
38+
linkcheck:
39+
@$(SPHINXBUILD) -M linkcheck "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)

doc/changelog.d/1263.changed.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
chore: update CHANGELOG for v0.6.2

doc/changelog.d/1264.fixed.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
fix: unnecessary Point3D comparison

doc/changelog.d/1265.changed.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
build: adapting to numpy 2.x

doc/changelog.d/1266.dependencies.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
build: bump numpy from 1.26.4 to 2.0.0

doc/changelog.d/1267.miscellaneous.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
chore: pre-commit automatic update

doc/changelog.d/1268.fixed.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
docs: examples are not being uploaded as assets (.py/.ipynb)

doc/changelog.d/1269.fixed.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
fix: change action order

0 commit comments

Comments
 (0)