Skip to content

bump to 0.10.dev0 #216

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

Merged
merged 2 commits into from
May 16, 2025
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
19 changes: 15 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -163,16 +163,27 @@ jobs:
twine-username: "__token__"
twine-token: ${{ secrets.PYANSYS_PYPI_PRIVATE_PAT }}

- name: Release to the public PyPI repository
uses: ansys/actions/release-pypi-public@v9
- name: "Download the library artifacts from build-library step"
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
with:
library-name: ${{ env.PACKAGE_NAME }}
use-trusted-publisher: true
name: ${{ env.PACKAGE_NAME }}-artifacts
path: ${{ env.PACKAGE_NAME }}-artifacts

- name: "Upload artifacts to PyPI using trusted publisher"
uses: pypa/gh-action-pypi-publish@76f52bc884231f62b9a034ebfe128415bbaabdfc # v1.12.4
with:
repository-url: "https://upload.pypi.org/legacy/"
print-hash: true
packages-dir: ${{ env.PACKAGE_NAME }}-artifacts
skip-existing: false

- name: Release to GitHub
uses: ansys/actions/release-github@v9
with:
library-name: ${{ env.PACKAGE_NAME }}
token: ${{ secrets.GITHUB_TOKEN }}
generate_release_notes: false
add-artifact-attestation-notes: true

doc-deploy-dev:
name: "Deploy development documentation"
Expand Down
1 change: 1 addition & 0 deletions doc/changelog.d/216.dependencies.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
bump to 0.10.dev0
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build-backend = "flit_core.buildapi"

[project]
name = "ansys-workbench-core"
version = "0.9.dev0"
version = "0.10.dev0"
description = "A python wrapper for Ansys Workbench"
readme = "README.rst"
requires-python = ">=3.10,<4.0"
Expand Down
Loading