Skip to content

Commit 67ae2a1

Browse files
committed
Minor updates. Doc change. Bump up version number for new release
1 parent 36cdbe9 commit 67ae2a1

File tree

4 files changed

+18
-18
lines changed

4 files changed

+18
-18
lines changed

.github/workflows/ci_cd.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,10 +76,10 @@ jobs:
7676
python-version: [ '3.8', '3.9', '3.10', '3.11' ]
7777

7878
steps:
79-
- uses: actions/checkout@v3
79+
- uses: actions/checkout@v4
8080

8181
- name: Login to GitHub Container Registry
82-
uses: docker/login-action@v2
82+
uses: docker/login-action@v3
8383
with:
8484
registry: ghcr.io
8585
username: ${{ github.repository_owner }}
@@ -184,7 +184,7 @@ jobs:
184184
needs: [ style, test, docs-style ]
185185
runs-on: ubuntu-latest
186186
steps:
187-
- uses: actions/checkout@v3
187+
- uses: actions/checkout@v4
188188
- name: Microsoft Teams Notification
189189
uses: jdcargile/[email protected]
190190
with:

.github/workflows/nightly.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,12 @@ jobs:
5050
python-version: [ '3.8', '3.9', '3.10', '3.11' ]
5151

5252
steps:
53-
- uses: actions/checkout@v3
53+
- uses: actions/checkout@v4
5454
with:
5555
ref: 'refs/heads/main'
5656

5757
- name: Login to GitHub Container Registry
58-
uses: docker/login-action@v2
58+
uses: docker/login-action@v3
5959
with:
6060
registry: ghcr.io
6161
username: ${{ github.repository_owner }}
@@ -102,7 +102,7 @@ jobs:
102102
needs: [ nightly_test, nightly_and_upload]
103103
runs-on: ubuntu-latest
104104
steps:
105-
- uses: actions/checkout@v3
105+
- uses: actions/checkout@v4
106106
- name: Microsoft Teams Notification
107107
uses: jdcargile/[email protected]
108108
with:

codegen/pyadritem.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ class Item:
9595
self.item_image = None
9696
"""Image object (Image and PNG binary files)"""
9797
self.item_scene = None
98-
"""3D scene (AVZ, PLY, GBT, and STL files)"""
98+
"""3D scene (AVZ, PLY, SCDOC, and STL files)"""
9999
# Attributes for the table items
100100
self.table_attr = table_attr
101101
self.item_table = None

pyproject.toml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ requires = [
88

99
[project]
1010
name = "ansys-dynamicreporting-core"
11-
version = "0.5.dev0"
11+
version = "0.5.0"
1212
authors = [
1313
{name = "ANSYS, Inc.", email = "[email protected]"},
1414
]
@@ -65,33 +65,33 @@ tests = [
6565
"pyansys-docker==5.0.4",
6666
"numpy==1.25.1",
6767
"psutil==5.9.5",
68-
"pytest==7.4.0",
68+
"pytest==7.4.2",
6969
"pytest-cov==4.1.0",
7070
]
7171
doc = [
72-
"ansys-sphinx-theme==0.10.0",
72+
"ansys-sphinx-theme==0.11.2",
7373
"numpydoc==1.5.0",
74-
"pillow==10.0.0",
74+
"pillow==10.0.1",
7575
"pyansys-docker==5.0.4",
76-
"Sphinx==7.1.1",
76+
"Sphinx==7.2.6",
7777
"sphinx-copybutton==0.5.2",
78-
"sphinx-gallery==0.13.0",
78+
"sphinx-gallery==0.14.0",
7979
]
8080
dev = [
8181
"ipdb",
8282
"ipython",
8383
"whatsonpypi",
84-
"ansys-sphinx-theme==0.10.0",
84+
"ansys-sphinx-theme==0.11.2",
8585
"numpy==1.25.1",
8686
"numpydoc==1.5.0",
87-
"pillow==10.0.0",
87+
"pillow==10.0.1",
8888
"psutil==5.9.5",
8989
"pyansys-docker==5.0.4",
90-
"pytest==7.4.0",
90+
"pytest==7.4.2",
9191
"pytest-cov==4.1.0",
92-
"Sphinx==7.1.1",
92+
"Sphinx==7.2.6",
9393
"sphinx-copybutton==0.5.2",
94-
"sphinx-gallery==0.13.0",
94+
"sphinx-gallery==0.14.0",
9595
]
9696

9797
[tool.pytest.ini_options]

0 commit comments

Comments
 (0)