Skip to content

Commit 50c1708

Browse files
committed
Merge branch 'main' into feat/-implement-import-rules
2 parents b0a660e + c5a4e86 commit 50c1708

30 files changed

+373
-107
lines changed

.github/dependabot.yml

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
version: 2
2-
enable-beta-ecosystems: true # TODO: to be removed once the beta is stable for cooldown
32
updates:
43
- package-ecosystem: "pip"
54
directory: "/"
@@ -12,6 +11,10 @@ updates:
1211
semver-patch-days: 3 # Cooldown for patch updates
1312
exclude:
1413
- "ansys-api-geometry"
14+
- "ansys-platform-instancemanagement"
15+
- "ansys-sphinx-theme"
16+
- "ansys-tools-path"
17+
- "ansys-tools-visualization-interface"
1518
labels:
1619
- "maintenance"
1720
- "dependencies"
@@ -42,14 +45,14 @@ updates:
4245
directory: "/"
4346
schedule:
4447
interval: "daily"
45-
# TODO: This should be activated once it's supported
46-
# cooldown:
47-
# default-days: 5 # Fallback cooldown if no specific rule applies
48-
# semver-major-days: 30 # Cooldown for major version updates
49-
# semver-minor-days: 7 # Cooldown for minor version updates
50-
# semver-patch-days: 3 # Cooldown for patch updates
51-
# exclude:
52-
# - "ansys/actions/*"
48+
# TODO: This should be activated once it's supported
49+
# cooldown:
50+
# default-days: 5 # Fallback cooldown if no specific rule applies
51+
# semver-major-days: 30 # Cooldown for major version updates
52+
# semver-minor-days: 7 # Cooldown for minor version updates
53+
# semver-patch-days: 3 # Cooldown for patch updates
54+
# exclude:
55+
# - "ansys/actions/*"
5356
labels:
5457
- "maintenance"
5558
assignees:

.github/workflows/ci_cd.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -938,8 +938,10 @@ jobs:
938938
upload_dev_docs:
939939
name: Upload dev documentation
940940
if: github.ref == 'refs/heads/main'
941-
runs-on: ubuntu-latest
942941
needs: [package]
942+
runs-on: ubuntu-latest
943+
permissions:
944+
contents: write
943945
steps:
944946
- name: Deploy the latest documentation
945947
uses: ansys/actions/doc-deploy-dev@c2fa7c93f6883114e0e643599431b33d29f0b13f # v10.1.4
@@ -952,8 +954,10 @@ jobs:
952954
upload_docs_release:
953955
name: Upload release documentation
954956
if: github.event_name == 'push' && contains(github.ref, 'refs/tags')
955-
runs-on: ubuntu-latest
956957
needs: [release, release-pypi]
958+
runs-on: ubuntu-latest
959+
permissions:
960+
contents: write
957961
steps:
958962
- name: Deploy the stable documentation
959963
uses: ansys/actions/doc-deploy-stable@c2fa7c93f6883114e0e643599431b33d29f0b13f # v10.1.4

.github/workflows/codeql.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ jobs:
2626
persist-credentials: false
2727

2828
- name: Initialize CodeQL
29-
uses: github/codeql-action/init@e296a935590eb16afc0c0108289f68c87e2a89a5 # v4.30.7
29+
uses: github/codeql-action/init@f443b600d91635bebf5b0d9ebc620189c0d6fba5 # v4.30.8
3030
with:
3131
languages: 'python'
3232
config-file: ./.github/codeql-config.yml
3333

3434
- name: Autobuild
35-
uses: github/codeql-action/autobuild@e296a935590eb16afc0c0108289f68c87e2a89a5 # v4.30.7
35+
uses: github/codeql-action/autobuild@f443b600d91635bebf5b0d9ebc620189c0d6fba5 # v4.30.8
3636

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

4444
- name: Perform CodeQL Analysis
45-
uses: github/codeql-action/analyze@e296a935590eb16afc0c0108289f68c87e2a89a5 # v4.30.7
45+
uses: github/codeql-action/analyze@f443b600d91635bebf5b0d9ebc620189c0d6fba5 # v4.30.8
4646
with:
4747
category: "/language:python"

doc/changelog.d/2294.added.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Tessellation speed enhancements
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Remove grpc ids
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Update dependabot configuration
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Dependabot cooldown on github-actions is not supported
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Bump pytest-cov from 6.3.0 to 7.0.0

doc/changelog.d/2300.fixed.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Turn off knot normalization to match SC

doc/changelog.d/2301.test.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Adding lines to coverage code implemented for nurbs surface creation

0 commit comments

Comments
 (0)