Skip to content

Commit 75505cd

Browse files
Merge branch 'fix/local-launcher-fixes' of https://github.com/ansys/ansys-tools-common into fix/local-launcher-fixes
2 parents fac6d45 + 02ea621 commit 75505cd

Some content is hidden

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

41 files changed

+822
-47
lines changed

.github/workflows/cicd.yml

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,12 +114,12 @@ jobs:
114114
ON_UBUNTU: true
115115
steps:
116116
- name: Checkout repository
117-
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # 5.0.1
117+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # 6.0.0
118118
with:
119119
persist-credentials: false
120120

121121
- name: Set up uv
122-
uses: astral-sh/setup-uv@5a7eac68fb9809dea845d802897dc5c723910fa3 # 7.1.3
122+
uses: astral-sh/setup-uv@1e862dfacbd1d6d858c55d9b792c756523627244 # 7.1.4
123123
with:
124124
python-version: ${{ env.MAIN_PYTHON_VERSION }}
125125
enable-cache: false
@@ -187,6 +187,19 @@ jobs:
187187
token: ${{ secrets.GITHUB_TOKEN }}
188188
library-name: ${{ env.PACKAGE_NAME }}
189189

190+
doc-deploy-dev:
191+
name: Deploy dev docs
192+
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
193+
runs-on: ubuntu-latest
194+
needs: build-library
195+
steps:
196+
- uses: ansys/actions/doc-deploy-dev@21c9de9bee9692173780696d4a39964f20b9cfa3 # v10.1.5
197+
with:
198+
cname: ${{ env.DOCUMENTATION_CNAME }}
199+
token: ${{ secrets.PYANSYS_CI_BOT_TOKEN }}
200+
bot-user: ${{ secrets.PYANSYS_CI_BOT_USERNAME }}
201+
bot-email: ${{ secrets.PYANSYS_CI_BOT_EMAIL }}
202+
190203
doc-deploy-stable:
191204
name: Deploy stable docs
192205
if: github.event_name == 'push' && contains(github.ref, 'refs/tags')

.github/workflows/label.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
contents: write
2626
pull-requests: write
2727
steps:
28-
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
28+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
2929
with:
3030
persist-credentials: false
3131
- uses: micnncim/action-label-syncer@3abd5ab72fda571e69fffd97bd4e0033dd5f495c # v1.3.0

.github/workflows/run_mapdl_tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,12 @@ jobs:
3737
ON_UBUNTU: true
3838

3939
steps:
40-
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
40+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
4141
with:
4242
persist-credentials: false
4343

4444
- name: Set up uv
45-
uses: astral-sh/setup-uv@5a7eac68fb9809dea845d802897dc5c723910fa3 # 7.1.3
45+
uses: astral-sh/setup-uv@1e862dfacbd1d6d858c55d9b792c756523627244 # 7.1.4
4646
with:
4747
python-version: ${{ env.MAIN_PYTHON_VERSION }}
4848
enable-cache: false

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ repos:
4848
- id: check-github-workflows
4949

5050
- repo: https://github.com/astral-sh/ruff-pre-commit
51-
rev: v0.14.5
51+
rev: v0.14.6
5252
hooks:
5353
- id: ruff-check
5454
- id: ruff-format

doc/source/changelog.rst

Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,80 @@ project.
88
99
.. towncrier release notes start
1010
11+
`0.3.0 <https://github.com/ansys/ansys-tools-common/releases/tag/v0.3.0>`_ - November 25, 2025
12+
==============================================================================================
13+
14+
.. tab-set::
15+
16+
17+
.. tab-item:: Dependencies
18+
19+
.. list-table::
20+
:header-rows: 0
21+
:widths: auto
22+
23+
* - Ci: bump ansys/actions from 10.1.4 to 10.1.5
24+
- `#92 <https://github.com/ansys/ansys-tools-common/pull/92>`_
25+
26+
* - Build: bump pyfakefs from 5.10.1 to 5.10.2
27+
- `#95 <https://github.com/ansys/ansys-tools-common/pull/95>`_
28+
29+
* - Build: bump pytest from 9.0.0 to 9.0.1
30+
- `#102 <https://github.com/ansys/ansys-tools-common/pull/102>`_
31+
32+
33+
.. tab-item:: Miscellaneous
34+
35+
.. list-table::
36+
:header-rows: 0
37+
:widths: auto
38+
39+
* - Chore: update CHANGELOG for v0.2.1
40+
- `#77 <https://github.com/ansys/ansys-tools-common/pull/77>`_
41+
42+
* - Ci: make changelog stage as required for releasing and avoid running old workflows
43+
- `#78 <https://github.com/ansys/ansys-tools-common/pull/78>`_
44+
45+
* - Ci: bump astral-sh/setup-uv from 7.0.0 to 7.1.2
46+
- `#79 <https://github.com/ansys/ansys-tools-common/pull/79>`_
47+
48+
* - Build: bump pyfakefs from 5.10.0 to 5.10.1
49+
- `#80 <https://github.com/ansys/ansys-tools-common/pull/80>`_
50+
51+
* - [pre-commit.ci] pre-commit autoupdate
52+
- `#82 <https://github.com/ansys/ansys-tools-common/pull/82>`_, `#97 <https://github.com/ansys/ansys-tools-common/pull/97>`_, `#101 <https://github.com/ansys/ansys-tools-common/pull/101>`_, `#109 <https://github.com/ansys/ansys-tools-common/pull/109>`_
53+
54+
* - Build: bump hypothesis from 6.142.4 to 6.142.5
55+
- `#91 <https://github.com/ansys/ansys-tools-common/pull/91>`_
56+
57+
* - Build: bump hypothesis from 6.142.5 to 6.143.0
58+
- `#93 <https://github.com/ansys/ansys-tools-common/pull/93>`_
59+
60+
* - Docs: Update \`\`CONTRIBUTORS.md\`\` with the latest contributors
61+
- `#94 <https://github.com/ansys/ansys-tools-common/pull/94>`_
62+
63+
* - Build: bump hypothesis from 6.143.0 to 6.146.0
64+
- `#98 <https://github.com/ansys/ansys-tools-common/pull/98>`_
65+
66+
* - Build: bump hypothesis from 6.146.0 to 6.147.0
67+
- `#99 <https://github.com/ansys/ansys-tools-common/pull/99>`_
68+
69+
* - Build: bump pytest from 8.4.2 to 9.0.0
70+
- `#100 <https://github.com/ansys/ansys-tools-common/pull/100>`_
71+
72+
* - Ci: bump astral-sh/setup-uv from 7.1.2 to 7.1.3
73+
- `#103 <https://github.com/ansys/ansys-tools-common/pull/103>`_
74+
75+
* - Ci: bump actions/checkout from 5.0.0 to 5.0.1
76+
- `#104 <https://github.com/ansys/ansys-tools-common/pull/104>`_
77+
78+
* - Build: bump hypothesis from 6.147.0 to 6.148.0
79+
- `#105 <https://github.com/ansys/ansys-tools-common/pull/105>`_
80+
81+
* - Feat: adding cyberchannel module
82+
- `#107 <https://github.com/ansys/ansys-tools-common/pull/107>`_
83+
84+
1185
`0.2.1 <https://github.com/ansys/ansys-tools-common/releases/tag/v0.2.1>`_ - October 31, 2025
1286
=============================================================================================
1387

doc/source/changelog/100.miscellaneous.md

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

doc/source/changelog/101.miscellaneous.md

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

doc/source/changelog/102.dependencies.md

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

doc/source/changelog/103.miscellaneous.md

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

doc/source/changelog/104.miscellaneous.md

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

0 commit comments

Comments
 (0)