Skip to content

Commit 0b898dc

Browse files
Merge branch 'main' into feat/grpc-common-layer-refactoring
2 parents c2baffc + a5236ee commit 0b898dc

29 files changed

+422
-131
lines changed

.github/workflows/ci_cd.yml

Lines changed: 16 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,6 @@ jobs:
160160
continue-on-error: ${{ matrix.experimental }}
161161
env:
162162
SKIP_UNSTABLE: false
163-
PYVISTA_OFF_SCREEN: true
164163
strategy:
165164
fail-fast: false
166165
matrix:
@@ -197,15 +196,13 @@ jobs:
197196

198197
- name: Set up Python
199198
if: env.SKIP_UNSTABLE == 'false'
200-
uses: actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 # v5.5.0
199+
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
201200
with:
202201
python-version: ${{ env.MAIN_PYTHON_VERSION }}
203202

204203
- name: Set up headless display
205204
if: env.SKIP_UNSTABLE == 'false'
206-
uses: pyvista/setup-headless-display-action@52bda06d59c0fc422fc2512c9c670bf6b66616f8 # v3.2
207-
with:
208-
pyvista: false
205+
uses: pyvista/setup-headless-display-action@48066dd0b79cf46babc16223a1dce3aa4803ec43 # v4.0
209206

210207
- name: Create Python venv
211208
if: env.SKIP_UNSTABLE == 'false'
@@ -323,11 +320,9 @@ jobs:
323320
name: Documentation
324321
needs: [docs-style]
325322
runs-on: ubuntu-latest
326-
env:
327-
PYVISTA_OFF_SCREEN: true
328323
steps:
329324
- name: Set up headless display
330-
uses: pyvista/setup-headless-display-action@52bda06d59c0fc422fc2512c9c670bf6b66616f8 # v3.2
325+
uses: pyvista/setup-headless-display-action@48066dd0b79cf46babc16223a1dce3aa4803ec43 # v4.0
331326

332327
- name: Login to GitHub Container Registry
333328
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3.4.0
@@ -403,9 +398,7 @@ jobs:
403398
404399
- name: Set up headless display
405400
if: env.SKIP_UNSTABLE == 'false'
406-
uses: pyvista/setup-headless-display-action@52bda06d59c0fc422fc2512c9c670bf6b66616f8 # v3.2
407-
with:
408-
pyvista: false
401+
uses: pyvista/setup-headless-display-action@48066dd0b79cf46babc16223a1dce3aa4803ec43 # v4.0
409402

410403
- name: Login in Github Container registry
411404
if: env.SKIP_UNSTABLE == 'false'
@@ -481,9 +474,7 @@ jobs:
481474
python-version: ['3.10', '3.11', '3.12', '3.13']
482475
steps:
483476
- name: Set up headless display
484-
uses: pyvista/setup-headless-display-action@52bda06d59c0fc422fc2512c9c670bf6b66616f8 # v3.2
485-
with:
486-
pyvista: false
477+
uses: pyvista/setup-headless-display-action@48066dd0b79cf46babc16223a1dce3aa4803ec43 # v4.0
487478

488479
- name: Login in Github Container registry
489480
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3.4.0
@@ -496,7 +487,7 @@ jobs:
496487
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
497488

498489
- name: Setup Python ${{ matrix.python-version }}
499-
uses: actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 # v5.5.0
490+
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
500491
with:
501492
python-version: ${{ matrix.python-version }}
502493

@@ -545,7 +536,7 @@ jobs:
545536
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
546537

547538
- name: Setup Python ${{ matrix.python-version }}
548-
uses: actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 # v5.5.0
539+
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
549540
with:
550541
python-version: ${{ matrix.python-version }}
551542

@@ -682,13 +673,16 @@ jobs:
682673
- name: Checkout repository
683674
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
684675

676+
- name: Set up headless display
677+
uses: pyvista/setup-headless-display-action@48066dd0b79cf46babc16223a1dce3aa4803ec43 # v4.0
678+
685679
- name: Set up Python
686-
uses: actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 # v5.5.0
680+
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
687681
with:
688682
python-version: ${{ env.MAIN_PYTHON_VERSION }}
689683

690684
- name: Download Windows binaries for ${{ matrix.mode }}
691-
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
685+
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
692686
with:
693687
name: ${{ matrix.zip-file }}
694688
path: docker/${{ matrix.zip-file }}
@@ -776,17 +770,15 @@ jobs:
776770
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
777771

778772
- name: Set up Python
779-
uses: actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 # v5.5.0
773+
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
780774
with:
781775
python-version: ${{ env.MAIN_PYTHON_VERSION }}
782776

783777
- name: Set up headless display
784-
uses: pyvista/setup-headless-display-action@52bda06d59c0fc422fc2512c9c670bf6b66616f8 # v3.2
785-
with:
786-
pyvista: false
778+
uses: pyvista/setup-headless-display-action@48066dd0b79cf46babc16223a1dce3aa4803ec43 # v4.0
787779

788780
- name: Download Linux binaries
789-
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
781+
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
790782
with:
791783
name: linux-core-binaries.zip
792784
path: docker/linux-core-binaries.zip
@@ -875,7 +867,7 @@ jobs:
875867
contents: write
876868
steps:
877869
- name: "Download the library artifacts from build-library step"
878-
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
870+
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
879871
with:
880872
name: ${{ env.PACKAGE_NAME }}-artifacts
881873
path: ${{ env.PACKAGE_NAME }}-artifacts

.github/workflows/codeql.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ jobs:
2222
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2323

2424
- name: Initialize CodeQL
25-
uses: github/codeql-action/init@45775bd8235c68ba998cffa5171334d58593da47 # v3.28.15
25+
uses: github/codeql-action/init@28deaeda66b76a05916b6923827895f2b14ab387 # v3.28.16
2626
with:
2727
languages: 'python'
2828
config-file: ./.github/codeql-config.yml
2929

3030
- name: Autobuild
31-
uses: github/codeql-action/autobuild@45775bd8235c68ba998cffa5171334d58593da47 # v3.28.15
31+
uses: github/codeql-action/autobuild@28deaeda66b76a05916b6923827895f2b14ab387 # v3.28.16
3232

3333
# If the Autobuild fails above, remove it and uncomment the following three lines.
3434
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.
@@ -38,6 +38,6 @@ jobs:
3838
# ./location_of_script_within_repo/buildscript.sh
3939

4040
- name: Perform CodeQL Analysis
41-
uses: github/codeql-action/analyze@45775bd8235c68ba998cffa5171334d58593da47 # v3.28.15
41+
uses: github/codeql-action/analyze@28deaeda66b76a05916b6923827895f2b14ab387 # v3.28.16
4242
with:
4343
category: "/language:python"

.github/workflows/nightly_docker_test.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -95,14 +95,12 @@ jobs:
9595
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
9696

9797
- name: Set up Python
98-
uses: actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 # v5.5.0
98+
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
9999
with:
100100
python-version: ${{ env.MAIN_PYTHON_VERSION }}
101101

102102
- name: Set up headless display
103-
uses: pyvista/setup-headless-display-action@52bda06d59c0fc422fc2512c9c670bf6b66616f8 # v3.2
104-
with:
105-
pyvista: false
103+
uses: pyvista/setup-headless-display-action@48066dd0b79cf46babc16223a1dce3aa4803ec43 # v4.0
106104

107105
- name: Create Python venv
108106
run: |
@@ -214,6 +212,9 @@ jobs:
214212
docker pull ${{ env.ANSRV_GEO_IMAGE_LINUX_CORE_TAG }}
215213
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_LINUX_CORE_TAG }}
216214
215+
- name: Set up headless display
216+
uses: pyvista/setup-headless-display-action@48066dd0b79cf46babc16223a1dce3aa4803ec43 # v4.0
217+
217218
- name: Run pytest
218219
uses: ansys/actions/tests-pytest@1f1f205361706d22f67c71c29b775222380cd95a # v9.0.6
219220
env:

CONTRIBUTORS.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
* [Camille](https://github.com/clatapie)
1515
* [Chad Queen](https://github.com/chadqueen)
1616
* [Chris Hawkins](https://github.com/chris-hawkins-usa)
17+
* [colton](https://github.com/syscordan)
18+
* [dastan-ansys](https://github.com/dastan-ansys)
1719
* [David Gorman](https://github.com/david-gorman)
1820
* [Dominik Gresch](https://github.com/greschd)
1921
* [German](https://github.com/germa89)
@@ -23,6 +25,7 @@
2325
* [Jorge Martínez](https://github.com/jorgepiloto)
2426
* [Kathy Pippert](https://github.com/PipKat)
2527
* [Kerry McAdams](https://github.com/klmcadams)
28+
* [kmahajan-cadfem](https://github.com/kmahajan-cadfem)
2629
* [LanceX2214](https://github.com/LanceX2214)
2730
* [Matteo Bini](https://github.com/b-matteo)
2831
* [Maxime Rey](https://github.com/MaxJPRey)
@@ -34,9 +37,6 @@
3437
* [Revathy Venugopal](https://github.com/Revathyvenugopal162)
3538
* [Riccardo Manno](https://github.com/rmanno91)
3639
* [Ryan Ward](https://github.com/RyanJWard)
40+
* [smereu](https://github.com/smereu)
3741
* [Sébastien Morais](https://github.com/SMoraisAnsys)
3842
* [Umut Soysal](https://github.com/umutsoysalansys)
39-
* [colton](https://github.com/syscordan)
40-
* [dastan-ansys](https://github.com/dastan-ansys)
41-
* [kmahajan-cadfem](https://github.com/kmahajan-cadfem)
42-
* [smereu](https://github.com/smereu)

doc/changelog.d/1914.added.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

doc/changelog.d/1919.maintenance.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

doc/changelog.d/1920.maintenance.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

doc/changelog.d/1921.added.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
grpc driving dimensions stub implementation

doc/changelog.d/1923.maintenance.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

doc/changelog.d/1924.dependencies.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)