Skip to content

Commit

Permalink
Merge branch 'master' into capture-mcm1
Browse files Browse the repository at this point in the history
  • Loading branch information
mudit2812 committed Jul 29, 2024
2 parents 1c79739 + 944fada commit 21e1819
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 5 deletions.
18 changes: 14 additions & 4 deletions .github/workflows/upload-nightly-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,16 @@ jobs:
git commit -m "[no ci] bump nightly version"
git push
- name: Build wheels
run: |
python -m pip install build
python -m build --wheel --outdir dist
- uses: actions/upload-artifact@v3
with:
name: nightly-wheels
path: ./dist/*.whl

upload:
name: Upload wheels to TestPyPI
needs: [setup]
Expand All @@ -36,10 +46,10 @@ jobs:
id-token: write # IMPORTANT: mandatory for trusted publishing

steps:
- name: Build wheels
run: |
python -m pip install build
python -m build --wheel --outdir dist
- uses: actions/download-artifact@v3
with:
name: nightly-wheels
path: dist

- name: Upload wheels
uses: pypa/gh-action-pypi-publish@release/v1
Expand Down
2 changes: 1 addition & 1 deletion pennylane/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@
Version number (major.minor.patch[-label])
"""

__version__ = "0.38.0-dev3"
__version__ = "0.38.0-dev4"

0 comments on commit 21e1819

Please sign in to comment.