Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump ansys/actions from 6 to 7 #76

Merged
merged 3 commits into from
Sep 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ jobs:
name: "Code style"
runs-on: ubuntu-latest
steps:
- uses: ansys/actions/code-style@v6
- uses: ansys/actions/code-style@v7
with:
python-version: ${{ env.MAIN_PYTHON_VERSION }}

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

Expand All @@ -43,7 +43,7 @@ jobs:
os: [ubuntu-latest, windows-latest]
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: ansys/actions/build-wheelhouse@v6
- uses: ansys/actions/build-wheelhouse@v7
with:
library-name: ${{ env.LIBRARY_NAME }}
operating-system: ${{ matrix.os }}
Expand All @@ -66,7 +66,7 @@ jobs:
run: pdm install --dev
- name: Generate test requirements
run: mkdir requirements && pdm export -G test --no-default -o requirements/requirements_tests.txt
- uses: ansys/actions/tests-pytest@v6
- uses: ansys/actions/tests-pytest@v7
with:
pytest-extra-args: "--cov=ansys --cov-report=term --cov-report=html:.cov/html"
checkout: false
Expand All @@ -87,7 +87,7 @@ jobs:
- uses: actions/checkout@v4
- name: Generate doc requirements
run: pdm export -G doc --no-default -o doc_requirements.txt
- uses: ansys/actions/doc-build@v6
- uses: ansys/actions/doc-build@v7
with:
python-version: ${{ env.MAIN_PYTHON_VERSION }}
checkout: false
Expand All @@ -99,7 +99,7 @@ jobs:
runs-on: ubuntu-latest
needs: [doc-build, tests]
steps:
- uses: ansys/actions/build-library@v6
- uses: ansys/actions/build-library@v7
with:
library-name: ${{ env.LIBRARY_NAME }}
python-version: ${{ env.MAIN_PYTHON_VERSION }}
Expand All @@ -110,7 +110,7 @@ jobs:
needs: [build-library]
if: github.event_name == 'push' && !contains(github.ref, 'refs/tags')
steps:
- uses: ansys/actions/doc-deploy-dev@v6
- uses: ansys/actions/doc-deploy-dev@v7
with:
cname: ${{ env.DOCUMENTATION_CNAME }}
token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -121,7 +121,7 @@ jobs:
needs: [build-library]
if: github.event_name == 'push' && contains(github.ref, 'refs/tags')
steps:
- uses: ansys/actions/doc-deploy-stable@v6
- uses: ansys/actions/doc-deploy-stable@v7
with:
cname: ${{ env.DOCUMENTATION_CNAME }}
token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -133,13 +133,13 @@ jobs:
needs: [build-library]
steps:
- name: "Release to the public PyPI repository"
uses: ansys/actions/release-pypi-public@v6
uses: ansys/actions/release-pypi-public@v7
with:
library-name: ${{ env.LIBRARY_NAME }}
twine-username: "__token__"
twine-token: ${{ secrets.PYPI_TOKEN }}

- name: "Release to GitHub"
uses: ansys/actions/release-github@v6
uses: ansys/actions/release-github@v7
with:
library-name: ${{ env.LIBRARY_NAME }}
6 changes: 3 additions & 3 deletions doc/source/user_guide/configuration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -77,12 +77,12 @@ class:
Interactive mode
------------------

When the property `interactive` is set to `true`, the users will be prompted for the missing configuration
When the property `interactive` is set to `true`, the users are prompted for the missing configuration
properties.
When the property is `false`, the interactive mode is disabled, and errors would be raised
When the property is `false`, the interactive mode is turned off, and errors would be raised
in case of missing configuration properties.
Default behavior is `interactive=true`.

It is important to note that login through web browser is disabled and credentials become required when `interactive=false`.
It is important to note that login through web browser is turned off and credentials become required when `interactive=false`.
This means that if the credentials are missing, the users won't be prompted to enter them
from the terminal, and an error would be raised instead.
13 changes: 13 additions & 0 deletions doc/styles/config/vocabularies/ANSYS/accept.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,16 @@ https_proxy
[Pp]ostprocessing
PySimAI
zipfile
TrainingData
CheckGlobalCoefficient
CheckGlobalCoefficientDirectory
ComputeGlobalCoefficient
ComputeGlobalCoefficientDirectory
TrialRuns
GlobalCoefficientDefinition
DomainAxisDefinition
DomainOfAnalysis
ModelConfiguration
ModelConfiguration
ModelManifest
ModelOutput
Loading