Skip to content

Commit 25f1b8d

Browse files
Merge branch 'main' into fix/vulnerabilities
2 parents 5a4534a + a9f8dc9 commit 25f1b8d

File tree

77 files changed

+2786
-982
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+2786
-982
lines changed

.github/workflows/ci_cd.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ on:
1717

1818
env:
1919
DOCKER_IMAGE_NAME: ghcr.io/ansys/prime
20-
DOCKER_IMAGE_TAG: '25.2.0'
20+
DOCKER_IMAGE_TAG: '26.1.0.dev30'
2121
MAIN_PYTHON_VERSION: '3.13'
2222
PACKAGE_NAME: 'ansys-meshing-prime'
2323
PACKAGE_NAMESPACE: 'ansys.meshing.prime'
@@ -261,4 +261,4 @@ jobs:
261261
token: ${{ secrets.PYANSYS_CI_BOT_TOKEN }}
262262
bot-user: ${{ secrets.PYANSYS_CI_BOT_USERNAME }}
263263
bot-email: ${{ secrets.PYANSYS_CI_BOT_EMAIL }}
264-
python-version: ${{ env.MAIN_PYTHON_VERSION }}
264+
python-version: ${{ env.MAIN_PYTHON_VERSION }}

.pre-commit-config.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,43 +7,43 @@ exclude: |
77
repos:
88

99
- repo: https://github.com/psf/black
10-
rev: 22.12.0 # IF VERSION CHANGES --> MODIFY "blacken-docs" MANUALLY AS WELL!!
10+
rev: 25.12.0 # IF VERSION CHANGES --> MODIFY "blacken-docs" MANUALLY AS WELL!!
1111
hooks:
1212
- id: black
1313

1414
- repo: https://github.com/adamchainz/blacken-docs
15-
rev: v1.12.1
15+
rev: 1.20.0
1616
hooks:
1717
- id: blacken-docs
1818
additional_dependencies: [black==22.12.0]
1919

2020
- repo: https://github.com/PyCQA/flake8
21-
rev: 6.0.0
21+
rev: 7.3.0
2222
hooks:
2323
- id: flake8
2424

2525
- repo: https://github.com/pycqa/isort
26-
rev: 5.12.0
26+
rev: 7.0.0
2727
hooks:
2828
- id: isort
2929
args: ["--profile", "black"]
3030

3131
- repo: https://github.com/codespell-project/codespell
32-
rev: v2.2.2
32+
rev: v2.4.1
3333
hooks:
3434
- id: codespell
3535
args: ["--ignore-words", "doc/styles/config/vocabularies/ANSYS/accept.txt"]
3636

3737
- repo: https://github.com/pre-commit/pre-commit-hooks
38-
rev: v4.4.0
38+
rev: v6.0.0
3939
hooks:
4040
- id: check-merge-conflict
4141
- id: debug-statements
4242

4343
# To be activated after quick dev cycles
4444
#
4545
- repo: https://github.com/pycqa/pydocstyle
46-
rev: 6.1.1
46+
rev: 6.3.0
4747
hooks:
4848
- id: pydocstyle
4949
additional_dependencies: [toml]

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2023 - 2025 ANSYS, Inc. and/or its affiliates.
3+
Copyright (c) 2026 ANSYS, Inc. and/or its affiliates.
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy of
66
this software and associated documentation files (the "Software"), to deal in

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ Run tests locally with this command:
108108
pytest
109109
```
110110

111-
## License and aknowledgments
111+
## License and acknowledgments
112112

113113
PyPrimeMesh is licensed under the MIT license.
114114

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Ado sync for 26R1
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Build(deps-dev): bump ansys-sphinx-theme[autoapi] from 1.6.4 to 1.7.0 in the doc-dependencies group
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Build(deps-dev): bump the pyvista group with 2 updates
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Build: bump ansys-api-meshing-prime

doc/source/conf.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
11
"""Sphinx documentation configuration file."""
2+
23
import glob
34
import os
45
import subprocess
56
import sys
67
from datetime import datetime
78

8-
# os.environ['PYVISTA_BUILDING_GALLERY'] = 'True'
9+
# Set PRIME_MODE if not already set (to avoid warnings during doc build)
10+
if "PRIME_MODE" not in os.environ:
11+
os.environ["PRIME_MODE"] = "GRPC_INSECURE"
12+
913
os.environ["SPHINX_GALLERY_CONF_FORCE_FRESH"] = "0"
1014

1115
import ansys.tools.visualization_interface as viz_interface

doc/source/getting_started/index.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ This table provides compatibility information:
3737
| | 25.1.2 (2025 R1 SP2) | |
3838
| | | |
3939
| 0.9.x | 25.2.0 (2025 R2) | 3.10 to 3.13 |
40+
| | | |
41+
| 0.10.x | 26.1.0 (2026 R1) | 3.10 to 3.13 |
4042
+----------------------------+----------------------------+--------------------------+
4143

4244
.. _Installation:

0 commit comments

Comments
 (0)