Skip to content

Commit 3aae080

Browse files
committed
0.1.6
1 parent 0851caa commit 3aae080

4 files changed

Lines changed: 7 additions & 11 deletions

File tree

.github/workflows/CI.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
- main
1212
- master
1313
tags:
14-
- "*"
14+
- '*'
1515
pull_request:
1616
workflow_dispatch:
1717

@@ -166,21 +166,17 @@ jobs:
166166
# Used to generate artifact attestation
167167
attestations: write
168168
steps:
169-
- uses: actions/checkout@v4
170-
- uses: actions/setup-python@v5
171-
with:
172-
python-version: 3.x
173169
- uses: actions/download-artifact@v4
174170
- name: Generate artifact attestation
175171
uses: actions/attest-build-provenance@v2
176172
with:
177-
subject-path: "wheels-*/*"
173+
subject-path: 'wheels-*/*'
178174
- name: Publish to PyPI
179175
if: ${{ startsWith(github.ref, 'refs/tags/') }}
180176
uses: PyO3/maturin-action@v1
181177
env:
182178
MATURIN_USERNAME: __token__
183179
MATURIN_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
184180
with:
185-
command: publish
181+
command: upload
186182
args: --non-interactive --skip-existing wheels-*/*

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pyqmc_rust"
3-
version = "0.1.5"
3+
version = "0.1.6"
44
edition = "2021"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

src/utils/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "utils"
3-
version = "0.1.5"
3+
version = "0.1.6"
44
edition = "2021"
55

66
[dependencies]

0 commit comments

Comments
 (0)