Skip to content

Commit f75b383

Browse files
authored
Merge branch 'master' into fix/result_info_available_qualifier_labels
2 parents cccb71f + f5172bf commit f75b383

File tree

647 files changed

+1227
-742
lines changed

Some content is hidden

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

647 files changed

+1227
-742
lines changed

.github/ISSUE_TEMPLATE/bug.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,8 @@ body:
6161
label: Which DPF/Ansys version are you using?
6262
multiple: false
6363
options:
64+
- 'Ansys 2024 R1'
65+
- 'Ansys 2023 R2'
6466
- 'DPF Server 2023.2.pre1'
6567
- 'DPF Server 2023.2.pre0'
6668
- 'Ansys 2023 R1'
Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
name: 🎓 Adding an example
2+
description: Proposing a new example for the library
3+
title: "Example proposal: ..."
4+
labels: ["example"]
5+
assignees: [""]
6+
7+
body:
8+
9+
- type: textarea
10+
id: example-description
11+
attributes:
12+
label: '📝 Description of the example'
13+
placeholder: Describe what example you devised and why it is useful for the project.
14+
15+
validations:
16+
required: true
17+
18+
- type: textarea
19+
id: example-files
20+
attributes:
21+
label: '📁 Files needed for running the example'
22+
placeholder: >
23+
Drag and drop the files used in your example, together with the script employed.
24+
Test the example files before uploading to ensure they at least run on your machine.
25+
Add any additional comments/explanations that maintainers may need for running the example.
26+
If you have issues uploading your files because of the file extension/type, upload them
27+
as a .zip file.
28+
validations:
29+
required: true
30+
31+
- type: dropdown
32+
id: os-name
33+
attributes:
34+
label: '💻 Which operating system are you using?'
35+
multiple: false
36+
options:
37+
- 'Windows'
38+
- 'MacOS'
39+
- 'Linux'
40+
validations:
41+
required: true
42+
43+
- type: textarea
44+
id: ansys-version
45+
attributes:
46+
label: '📀 Which ANSYS version are you using?'
47+
placeholder: Indicate the ANSYS version of the products you are using.
48+
49+
validations:
50+
required: false
51+
52+
- type: dropdown
53+
id: python-version
54+
attributes:
55+
label: '🐍 Which Python version are you using?'
56+
description: Run `python --version` to verify your Python version
57+
multiple: false
58+
options:
59+
- '3.7'
60+
- '3.8'
61+
- '3.9'
62+
- '3.10'
63+
- '3.11'
64+
validations:
65+
required: true
66+
67+
- type: textarea
68+
id: installed-packages
69+
attributes:
70+
label: '📦 Installed packages'
71+
description: Run `python -m pip freeze` to list installed packages
72+
placeholder: Paste the output of `python -m pip freeze` here.
73+
render: shell
74+
validations:
75+
required: true

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ jobs:
115115
needs: [docs]
116116
steps:
117117
- name: "Upload development documentation"
118-
uses: pyansys/actions/doc-deploy-dev@v4
118+
uses: ansys/actions/doc-deploy-dev@v4
119119
with:
120120
cname: ${{ env.DOCUMENTATION_CNAME }}
121121
token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/docs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ jobs:
9393

9494
- name: "Build Package"
9595
id: build-package
96-
uses: pyansys/pydpf-actions/[email protected]
96+
uses: ansys/pydpf-actions/[email protected]
9797
with:
9898
python-version: ${{ inputs.python_version }}
9999
ANSYS_VERSION: ${{inputs.ANSYS_VERSION}}
@@ -122,7 +122,7 @@ jobs:
122122
pip install -r requirements/requirements_docs.txt
123123
124124
- name: "Kill all servers"
125-
uses: pyansys/pydpf-actions/[email protected]
125+
uses: ansys/pydpf-actions/[email protected]
126126

127127
- name: "List installed packages"
128128
shell: bash
@@ -152,7 +152,7 @@ jobs:
152152
esac
153153
154154
- name: "Kill all servers"
155-
uses: pyansys/pydpf-actions/[email protected]
155+
uses: ansys/pydpf-actions/[email protected]
156156
if: always()
157157

158158
- name: "Retrieve package version"

.github/workflows/examples.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ jobs:
9797
python-version: ${{ matrix.python-version }}
9898

9999
- name: "Build Package"
100-
uses: pyansys/pydpf-actions/[email protected]
100+
uses: ansys/pydpf-actions/[email protected]
101101
with:
102102
python-version: ${{ matrix.python-version }}
103103
ANSYS_VERSION: ${{inputs.ANSYS_VERSION}}
@@ -112,7 +112,7 @@ jobs:
112112
custom-requirements: ${{ inputs.custom-requirements }}
113113

114114
- name: "Prepare Testing Environment"
115-
uses: pyansys/pydpf-actions/[email protected]
115+
uses: ansys/pydpf-actions/[email protected]
116116
with:
117117
DEBUG: true
118118

@@ -128,5 +128,5 @@ jobs:
128128
python run_examples.py
129129
130130
- name: "Kill all servers"
131-
uses: pyansys/pydpf-actions/[email protected]
131+
uses: ansys/pydpf-actions/[email protected]
132132
if: always()

.github/workflows/examples_docker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ jobs:
9292
python-version: ${{ matrix.python-version }}
9393

9494
- name: "Build Docker Package"
95-
uses: pyansys/pydpf-actions/[email protected]
95+
uses: ansys/pydpf-actions/[email protected]
9696
with:
9797
python-version: ${{ matrix.python-version }}
9898
ANSYS_VERSION: ${{inputs.ANSYS_VERSION}}
@@ -107,7 +107,7 @@ jobs:
107107
custom-requirements: ${{ inputs.custom-requirements }}
108108

109109
- name: "Prepare Testing Environment"
110-
uses: pyansys/pydpf-actions/[email protected]
110+
uses: ansys/pydpf-actions/[email protected]
111111
with:
112112
DEBUG: true
113113

.github/workflows/gate.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
python-version: ${{ matrix.python-version }}
7878

7979
- name: "Build Package"
80-
uses: pyansys/pydpf-actions/[email protected]
80+
uses: ansys/pydpf-actions/[email protected]
8181
with:
8282
python-version: ${{ matrix.python-version }}
8383
ANSYS_VERSION: ${{inputs.ANSYS_VERSION}}
@@ -92,7 +92,7 @@ jobs:
9292
custom-requirements: ${{ inputs.custom-requirements }}
9393

9494
- name: "Prepare Testing Environment"
95-
uses: pyansys/pydpf-actions/[email protected]
95+
uses: ansys/pydpf-actions/[email protected]
9696
with:
9797
DEBUG: true
9898

@@ -108,7 +108,7 @@ jobs:
108108
python run_examples.py
109109
110110
- name: "Kill all servers"
111-
uses: pyansys/pydpf-actions/[email protected]
111+
uses: ansys/pydpf-actions/[email protected]
112112
if: always()
113113

114114
- name: "Uninstall gatebin"
@@ -127,7 +127,7 @@ jobs:
127127
if: always()
128128

129129
- name: "Kill all servers"
130-
uses: pyansys/pydpf-actions/[email protected]
130+
uses: ansys/pydpf-actions/[email protected]
131131
if: always()
132132

133133
- name: "Check sanity without gatebin GRPC"
@@ -140,7 +140,7 @@ jobs:
140140
if: always()
141141

142142
- name: "Kill all servers"
143-
uses: pyansys/pydpf-actions/[email protected]
143+
uses: ansys/pydpf-actions/[email protected]
144144
if: always()
145145

146146
- name: "Check sanity without gatebin LEGACYGRPC"
@@ -153,5 +153,5 @@ jobs:
153153
if: always()
154154

155155
- name: "Kill all servers"
156-
uses: pyansys/pydpf-actions/[email protected]
156+
uses: ansys/pydpf-actions/[email protected]
157157
if: always()

.github/workflows/label.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,9 @@ jobs:
7777
issue-number: ${{ github.event.pull_request.number }}
7878
body: |
7979
Please add one of the following labels to add this contribution to the Release Notes :point_down:
80-
- [bug](https://github.com/pyansys/pydpf-core/pulls?q=label%3Abug+)
81-
- [enhancement](https://github.com/pyansys/pydpf-core/pulls?q=label%3Aenhancement+)
82-
- [documentation](https://github.com/pyansys/pydpf-core/pulls?q=label%3Adocumentation+)
83-
- [examples](https://github.com/pyansys/pydpf-core/pulls?q=label%3Aexamples+)
84-
- [maintenance](https://github.com/pyansys/pydpf-core/pulls?q=label%3Amaintenance+)
85-
- [CI/CD](https://github.com/pyansys/pydpf-core/pulls?q=label%3Aci%2Fcd+)
80+
- [bug](https://github.com/ansys/pydpf-core/pulls?q=label%3Abug+)
81+
- [enhancement](https://github.com/ansys/pydpf-core/pulls?q=label%3Aenhancement+)
82+
- [documentation](https://github.com/ansys/pydpf-core/pulls?q=label%3Adocumentation+)
83+
- [examples](https://github.com/ansys/pydpf-core/pulls?q=label%3Aexamples+)
84+
- [maintenance](https://github.com/ansys/pydpf-core/pulls?q=label%3Amaintenance+)
85+
- [CI/CD](https://github.com/ansys/pydpf-core/pulls?q=label%3Aci%2Fcd+)

.github/workflows/pydpf-post.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ jobs:
8484
python-version: "3.8"
8585

8686
- name: "Build Core Package"
87-
uses: pyansys/pydpf-actions/[email protected]
87+
uses: ansys/pydpf-actions/[email protected]
8888
with:
8989
python-version: ${{ matrix.python-version }}
9090
ANSYS_VERSION: ${{inputs.ANSYS_VERSION}}
@@ -108,7 +108,7 @@ jobs:
108108
- name: "Clone PyDPF-Post"
109109
shell: bash
110110
run: |
111-
REPO="https://github.com/pyansys/pydpf-post.git"
111+
REPO="https://github.com/ansys/pydpf-post.git"
112112
BranchName=${{ inputs.post_branch }}
113113
echo branch="$BranchName"
114114
if [ "$BranchName" = '' ];
@@ -126,7 +126,7 @@ jobs:
126126
ls
127127
128128
- name: "Prepare Testing Environment"
129-
uses: pyansys/pydpf-actions/[email protected]
129+
uses: ansys/pydpf-actions/[email protected]
130130
with:
131131
DEBUG: true
132132
working-directory: pydpf-post
@@ -136,7 +136,7 @@ jobs:
136136
run: pip list
137137

138138
- name: "Test Docstrings"
139-
uses: pyansys/pydpf-actions/[email protected]
139+
uses: ansys/pydpf-actions/[email protected]
140140
with:
141141
MODULE: post
142142
PACKAGE_NAME: ansys-dpf-post
@@ -150,4 +150,4 @@ jobs:
150150
if: always()
151151

152152
- name: "Kill all servers"
153-
uses: pyansys/pydpf-actions/[email protected]
153+
uses: ansys/pydpf-actions/[email protected]

.github/workflows/releaser.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
# if: always()
4848

4949
- name: "Deploy the stable documentation"
50-
uses: pyansys/actions/doc-deploy-stable@v4
50+
uses: ansys/actions/doc-deploy-stable@v4
5151
with:
5252
cname: ${{ env.DOCUMENTATION_CNAME }}
5353
token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)