Skip to content

Commit 76c64dd

Browse files
release 0.5.1
2 parents 67ae2a1 + 8563d3c commit 76c64dd

Some content is hidden

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

51 files changed

+3995
-147
lines changed

.github/workflows/ci_cd.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
fail-fast: false
5252
matrix:
5353
os: [ubuntu-latest, windows-latest, macos-latest]
54-
python-version: ['3.8', '3.9', '3.10', '3.11']
54+
python-version: ['3.9', '3.10', '3.11', '3.12']
5555
should-release:
5656
- ${{ github.event_name == 'push' && contains(github.ref, 'refs/tags') }}
5757
exclude:
@@ -73,7 +73,7 @@ jobs:
7373
strategy:
7474
matrix:
7575
os: [ ubuntu-latest ]
76-
python-version: [ '3.8', '3.9', '3.10', '3.11' ]
76+
python-version: [ '3.9', '3.10', '3.11', '3.12' ]
7777

7878
steps:
7979
- uses: actions/checkout@v4
@@ -120,6 +120,7 @@ jobs:
120120
with:
121121
python-version: ${{ env.MAIN_PYTHON_VERSION }}
122122
check-links: false
123+
sphinxopts: '-j auto'
123124

124125
package:
125126
name: Package library

.github/workflows/nightly-docs.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ jobs:
2323
with:
2424
python-version: ${{ env.MAIN_PYTHON_VERSION }}
2525
check-links: false
26+
sphinxopts: '-j auto'
2627

2728
docs_upload:
2829
needs: docs_build

.github/workflows/nightly.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
fail-fast: false
3131
matrix:
3232
os: [ubuntu-latest, windows-latest]
33-
python-version: ['3.8', '3.9', '3.10', '3.11']
33+
python-version: [ '3.9', '3.10', '3.11', '3.12']
3434
steps:
3535
- name: Build wheelhouse and perform smoke test
3636
uses: ansys/actions/build-wheelhouse@v4
@@ -47,7 +47,7 @@ jobs:
4747
strategy:
4848
matrix:
4949
os: [ ubuntu-latest ]
50-
python-version: [ '3.8', '3.9', '3.10', '3.11' ]
50+
python-version: [ '3.9', '3.10', '3.11', '3.12' ]
5151

5252
steps:
5353
- uses: actions/checkout@v4

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ To reach the project support team, email `[email protected] <pyansys.core@a
6666

6767
Installation
6868
------------
69-
The ``pydynamicreporting`` package supports Python 3.7 through 3.11 on
69+
The ``pydynamicreporting`` package supports Python 3.9 through 3.12 on
7070
Windows and Linux. It is currently available on the PyPi
7171
`repository <https://pypi.org/project/ansys-dynamicreporting-core/>`_.
7272

@@ -203,7 +203,7 @@ PyDynamicReporting is licensed under the MIT license.
203203

204204
PyDynamicReporting makes no commercial claim over Ansys whatsoever.
205205
This library extends the functionality of Ansys Dynamic Reporting by
206-
adding a Python interface to Ansys Dynamic Reproting without changing
206+
adding a Python interface to Ansys Dynamic Reporting without changing
207207
the core behavior or license of the original software. The use of
208208
PyDynamicReporting requires a legally licensed copy of an Ansys product
209209
that supports Ansys Dynamic Reporting.

codegen/adr_utils.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,15 +60,15 @@ def get_logger(logfile=None):
6060
The logger object.
6161
"""
6262
logger = logging.getLogger()
63-
logger.setLevel(logging.DEBUG)
63+
logger.setLevel(logging.ERROR)
6464
if logfile is None:
6565
# Logging for Python APIs should be disabled by default
6666
ch = logging.NullHandler()
6767
elif logfile=='stdout':
6868
ch = logging.StreamHandler(sys.stdout)
6969
else:
7070
ch = logging.FileHandler(logfile)
71-
ch.setLevel(logging.DEBUG)
71+
ch.setLevel(logging.ERROR)
7272
formatter = logging.Formatter("%(asctime)s - %(name)s - %(levelname)s - %(message)s")
7373
ch.setFormatter(formatter)
7474
logger.addHandler(ch)

codegen/all_test_prop.xml

Lines changed: 139 additions & 1 deletion
Large diffs are not rendered by default.

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, SCDOC, and STL files)"""
98+
"""3D scene (AVZ, PLY, SCDOC, GLB, and STL files)"""
9999
# Attributes for the table items
100100
self.table_attr = table_attr
101101
self.item_table = None

doc/.vale.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ WordTemplate = \b(?:%s)\b
2020
Packages = Google
2121

2222
# Define the Ansys vocabulary
23-
Vocab = ANSYS
23+
Vocab = ANSYS, Polyflow
2424

2525
[*.{md,rst}]
2626

doc/source/_static/bar_plot.png

8.89 KB
Loading

doc/source/_static/heatmap.png

8.83 KB
Loading

0 commit comments

Comments
 (0)