Skip to content
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
12 changes: 6 additions & 6 deletions .github/workflows/ci_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,22 +61,22 @@ jobs:
python_versions: '["3.7", "3.8", "3.9", "3.10"]'
wheel: true
wheelhouse: true
standalone_suffix: ".pre0"
standalone_suffix: ""
secrets: inherit

docs:
uses: ./.github/workflows/docs.yml
with:
ANSYS_VERSION: "232"
standalone_suffix: ".pre0"
standalone_suffix: ""
secrets: inherit

examples:
uses: ./.github/workflows/examples.yml
with:
ANSYS_VERSION: "232"
python_versions: '["3.7", "3.8", "3.9", "3.10"]'
standalone_suffix: ".pre0"
standalone_suffix: ""
secrets: inherit

retro_231:
Expand Down Expand Up @@ -111,7 +111,7 @@ jobs:
uses: ./.github/workflows/pydpf-post.yml
with:
ANSYS_VERSION: "232"
standalone_suffix: ".pre0"
standalone_suffix: ""
secrets: inherit

pydpf-post_231:
Expand Down Expand Up @@ -139,14 +139,14 @@ jobs:
name: "gate"
uses: ./.github/workflows/gate.yml
with:
standalone_suffix: ".pre0"
standalone_suffix: ""
secrets: inherit

docker_tests:
name: "Build and Test on Docker"
uses: ./.github/workflows/test_docker.yml
with:
standalone_suffix: ".pre0"
standalone_suffix: ""
secrets: inherit

draft_release:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test_docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ jobs:
MODULE: ${{env.MODULE}}
dpf-standalone-TOKEN: ${{secrets.DPF_PIPELINE}}
install_extras: plotting
wheel: false
wheelhouse: false
extra-pip-args: ${{ env.extra }}
standalone_suffix: ${{ inputs.standalone_suffix }}
Expand Down
2 changes: 1 addition & 1 deletion ansys/dpf/core/_version.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Version for ansys-dpf-core"""
# major, minor, patch
version_info = 0, 7, 1, 'dev0'
version_info = 0, 7, 2, 'dev0'

# Nice string for the version
__version__ = ".".join(map(str, version_info))
Expand Down