Skip to content

Commit

Permalink
Merge pull request #66 from qnngroup/worflow_error
Browse files Browse the repository at this point in the history
similar to python packaging user guide
  • Loading branch information
audrey01mit authored May 20, 2024
2 parents 88c2cbb + 6b0743e commit fddc7a6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/publish-to-test-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "3.x"

Expand All @@ -24,7 +24,7 @@ jobs:
run: python3 -m build

- name: Store the distribution packages
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: python-package-distributions
path: dist/
Expand All @@ -44,7 +44,7 @@ jobs:

steps:
- name: Download all the dists
uses: actions/download-artifact@v4
uses: actions/download-artifact@v3
with:
name: python-package-distributions
path: dist/
Expand All @@ -66,12 +66,12 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Download all the dists
uses: actions/download-artifact@v4
uses: actions/download-artifact@v3
with:
name: python-package-distributions
path: dist/
- name: Sign the dists with Sigstore
uses: sigstore/gh-action-sigstore-python@v1.2.3
uses: sigstore/gh-action-sigstore-python@v2.1.1
with:
inputs: >-
./dist/*.tar.gz
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "pdm.backend"

[project]
name = "qnngds"
version = "2.5.1"
version = "2.5.2"

authors = [
{ name="A. Jacquillat", email="[email protected]" },
Expand Down

0 comments on commit fddc7a6

Please sign in to comment.