Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
philipjusher committed Jan 23, 2024
2 parents 855bfb8 + f83d073 commit c2741e6
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@ jobs:
name: "Code style"
runs-on: ubuntu-latest
steps:
- uses: ansys/actions/code-style@v4
- uses: ansys/actions/code-style@v5
with:
python-version: ${{ env.MAIN_PYTHON_VERSION }}

doc-style:
name: "Documentation style"
runs-on: ubuntu-latest
steps:
- uses: ansys/actions/doc-style@v4
- uses: ansys/actions/doc-style@v5
with:
token: ${{ secrets.GITHUB_TOKEN }}

Expand All @@ -45,7 +45,7 @@ jobs:
os: [ubuntu-latest, windows-latest]
python-version: []
steps:
- uses: ansys/actions/build-wheelhouse@v4
- uses: ansys/actions/build-wheelhouse@v5
with:
library-name: ${{ env.LIBRARY_NAME }}
library-namespace: ${{ env.LIBRARY_NAMESPACE }}
Expand All @@ -62,7 +62,7 @@ jobs:
python-version: []
fail-fast: false
steps:
- uses: ansys/actions/tests-pytest@v4
- uses: ansys/actions/tests-pytest@v5
with:
pytest-extra-args: "--cov=ansys --cov-report=term --cov-report=html:.cov/html"

Expand All @@ -71,7 +71,7 @@ jobs:
runs-on: ubuntu-latest
needs: [doc-style]
steps:
- uses: ansys/actions/doc-build@v4
- uses: ansys/actions/doc-build@v5
with:
python-version: ${{ env.MAIN_PYTHON_VERSION }}

Expand All @@ -80,7 +80,7 @@ jobs:
runs-on: ubuntu-latest
needs: [doc-build, tests]
steps:
- uses: ansys/actions/build-library@v4
- uses: ansys/actions/build-library@v5
with:
library-name: ${{ env.LIBRARY_NAME }}
python-version: ${{ env.MAIN_PYTHON_VERSION }}
Expand All @@ -91,7 +91,7 @@ jobs:
needs: [build-library]
if: github.event_name == 'push' && !contains(github.ref, 'refs/tags')
steps:
- uses: ansys/actions/doc-deploy-dev@v4
- uses: ansys/actions/doc-deploy-dev@v5
with:
cname: ${{ env.DOCUMENTATION_CNAME }}
token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -102,7 +102,7 @@ jobs:
needs: [build-library]
if: github.event_name == 'push' && contains(github.ref, 'refs/tags')
steps:
- uses: ansys/actions/doc-deploy-stable@v4
- uses: ansys/actions/doc-deploy-stable@v5
with:
cname: ${{ env.DOCUMENTATION_CNAME }}
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/label.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
name: Syncer
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: micnncim/action-label-syncer@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Suggest to add labels
uses: peter-evans/create-or-update-comment@v2
uses: peter-evans/create-or-update-comment@v3
# Execute only when no labels have been applied to the pull request
if: toJSON(github.event.pull_request.labels.*.name) == '{}'
with:
Expand Down
10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,18 +24,18 @@ packages = [

[tool.poetry.dependencies]
python = ">=3.11,<4.0"
importlib-metadata = {version = "^4.0", python = "<3.8"}
importlib-metadata = {version = "^7.0", python = "<3.8"}
python-dotenv = "^1.0.0"
plotly = "^5.18.0"
httpx = "^0.25.2"
httpx = "^0.26.0"

[tool.poetry.group.doc] # Optional documentation dependencies
optional = true

[tool.poetry.group.doc.dependencies]
Sphinx = "^5.3.0"
Sphinx = "^7.2.6"
numpydoc = "^1.5.0"
ansys-sphinx-theme = "^0.9.7"
ansys-sphinx-theme = "^0.13.0"
sphinx-copybutton = "^0.5.1"

# Optional testing dependencies
Expand All @@ -49,7 +49,7 @@ pytest-cov = "^4.0.0"
[tool.poetry.group.build]
optional = true
[tool.poetry.group.build.dependencies]
build = "^0.10.0"
build = "^1.0.3"
twine = "^4.0.2"


Expand Down

0 comments on commit c2741e6

Please sign in to comment.