Skip to content

Commit e2a6d3f

Browse files
committed
remove command line argument with explicit Cargo.toml manifest path, because that path is already specified by the top-level pyproject.toml manifest (which is skipped if command line manifest path is specified)
1 parent 1c9d2e6 commit e2a6d3f

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ jobs:
143143
uses: PyO3/maturin-action@v1
144144
with:
145145
target: ${{ matrix.platform.target }}
146-
args: --release --out dist --manifest-path crates/prettypretty/Cargo.toml
146+
args: --release --out dist
147147
sccache: 'true'
148148
manylinux: auto
149149
- name: Upload wheels
@@ -178,7 +178,6 @@ jobs:
178178
args: >
179179
--release --out dist
180180
--no-default-features --features f64,gamut,pyffi
181-
--manifest-path crates/prettypretty/Cargo.toml
182181
sccache: 'true'
183182
manylinux: musllinux_1_2
184183
- name: Upload wheels
@@ -210,7 +209,6 @@ jobs:
210209
args: >
211210
--release --out dist
212211
--no-default-features --features f64,gamut,pyffi
213-
--manifest-path crates/prettypretty/Cargo.toml
214212
sccache: 'true'
215213
- name: Upload wheels
216214
uses: actions/upload-artifact@v4
@@ -240,7 +238,6 @@ jobs:
240238
args: >
241239
--release --out dist
242240
--no-default-features --features f64,gamut,pyffi
243-
--manifest-path crates/prettypretty/Cargo.toml
244241
sccache: 'true'
245242
- name: Upload wheels
246243
uses: actions/upload-artifact@v4
@@ -257,7 +254,7 @@ jobs:
257254
uses: PyO3/maturin-action@v1
258255
with:
259256
command: sdist
260-
args: --out dist --manifest-path crates/prettypretty/Cargo.toml
257+
args: --out dist
261258
- name: Upload sdist
262259
uses: actions/upload-artifact@v4
263260
with:

0 commit comments

Comments
 (0)