From 67ae2a15c7b3e2bf32c688891410c16681bc9bbf Mon Sep 17 00:00:00 2001 From: Marina Galvagni Date: Fri, 22 Sep 2023 13:14:26 -0400 Subject: [PATCH] Minor updates. Doc change. Bump up version number for new release --- .github/workflows/ci_cd.yml | 6 +++--- .github/workflows/nightly.yml | 6 +++--- codegen/pyadritem.txt | 2 +- pyproject.toml | 22 +++++++++++----------- 4 files changed, 18 insertions(+), 18 deletions(-) diff --git a/.github/workflows/ci_cd.yml b/.github/workflows/ci_cd.yml index 7981a448..aef5cd89 100644 --- a/.github/workflows/ci_cd.yml +++ b/.github/workflows/ci_cd.yml @@ -76,10 +76,10 @@ jobs: python-version: [ '3.8', '3.9', '3.10', '3.11' ] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Login to GitHub Container Registry - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ghcr.io username: ${{ github.repository_owner }} @@ -184,7 +184,7 @@ jobs: needs: [ style, test, docs-style ] runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Microsoft Teams Notification uses: jdcargile/ms-teams-notification@v1.3 with: diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index b9f83559..dd4a12e1 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -50,12 +50,12 @@ jobs: python-version: [ '3.8', '3.9', '3.10', '3.11' ] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: ref: 'refs/heads/main' - name: Login to GitHub Container Registry - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ghcr.io username: ${{ github.repository_owner }} @@ -102,7 +102,7 @@ jobs: needs: [ nightly_test, nightly_and_upload] runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Microsoft Teams Notification uses: jdcargile/ms-teams-notification@v1.3 with: diff --git a/codegen/pyadritem.txt b/codegen/pyadritem.txt index 82d5559d..890bf488 100644 --- a/codegen/pyadritem.txt +++ b/codegen/pyadritem.txt @@ -95,7 +95,7 @@ class Item: self.item_image = None """Image object (Image and PNG binary files)""" self.item_scene = None - """3D scene (AVZ, PLY, GBT, and STL files)""" + """3D scene (AVZ, PLY, SCDOC, and STL files)""" # Attributes for the table items self.table_attr = table_attr self.item_table = None diff --git a/pyproject.toml b/pyproject.toml index f3cb242f..3434b5d9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ requires = [ [project] name = "ansys-dynamicreporting-core" -version = "0.5.dev0" +version = "0.5.0" authors = [ {name = "ANSYS, Inc.", email = "pyansys.core@ansys.com"}, ] @@ -65,33 +65,33 @@ tests = [ "pyansys-docker==5.0.4", "numpy==1.25.1", "psutil==5.9.5", - "pytest==7.4.0", + "pytest==7.4.2", "pytest-cov==4.1.0", ] doc = [ - "ansys-sphinx-theme==0.10.0", + "ansys-sphinx-theme==0.11.2", "numpydoc==1.5.0", - "pillow==10.0.0", + "pillow==10.0.1", "pyansys-docker==5.0.4", - "Sphinx==7.1.1", + "Sphinx==7.2.6", "sphinx-copybutton==0.5.2", - "sphinx-gallery==0.13.0", + "sphinx-gallery==0.14.0", ] dev = [ "ipdb", "ipython", "whatsonpypi", - "ansys-sphinx-theme==0.10.0", + "ansys-sphinx-theme==0.11.2", "numpy==1.25.1", "numpydoc==1.5.0", - "pillow==10.0.0", + "pillow==10.0.1", "psutil==5.9.5", "pyansys-docker==5.0.4", - "pytest==7.4.0", + "pytest==7.4.2", "pytest-cov==4.1.0", - "Sphinx==7.1.1", + "Sphinx==7.2.6", "sphinx-copybutton==0.5.2", - "sphinx-gallery==0.13.0", + "sphinx-gallery==0.14.0", ] [tool.pytest.ini_options]