Skip to content

Commit c7309c2

Browse files
committed
reasonable <- pyreasonable
1 parent 43e7ce3 commit c7309c2

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

.github/workflows/builds.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -125,12 +125,12 @@ jobs:
125125
cache-dependency-path: '**/requirements.dev.txt'
126126
- run: pip install -r python/requirements.dev.txt
127127
- run: maturin build -m python/Cargo.toml
128-
- run: pip install --no-index --find-links=target/wheels/ pyreasonable
128+
- run: pip install --no-index --find-links=target/wheels/ reasonable
129129
- run: rm -r target/wheels
130130
- run: maturin sdist -m python/Cargo.toml
131131
- uses: actions/upload-artifact@v4
132132
with:
133-
name: pyreasonable_dist
133+
name: reasonable_dist
134134
path: target/wheels/*.tar.gz
135135

136136
wheel_linux:
@@ -155,7 +155,7 @@ jobs:
155155
if: github.event_name == 'release' || matrix.architecture == 'x86_64'
156156
- uses: actions/upload-artifact@v4
157157
with:
158-
name: pyreasonable_${{ matrix.architecture }}_linux_gnu
158+
name: reasonable_${{ matrix.architecture }}_linux_gnu
159159
path: target/wheels/*.whl
160160

161161
wheel_linux_musl:
@@ -181,7 +181,7 @@ jobs:
181181
- run: find .
182182
- uses: actions/upload-artifact@v4
183183
with:
184-
name: pyreasonable_${{ matrix.architecture }}_linux_musl
184+
name: reasonable_${{ matrix.architecture }}_linux_musl
185185
path: target/wheels/*.whl
186186

187187
wheel_mac:
@@ -210,7 +210,7 @@ jobs:
210210
- run: pip install -r python/requirements.dev.txt
211211
- run: maturin build --release --features abi3
212212
working-directory: ./python
213-
- run: pip install --no-index --find-links=target/wheels/ pyreasonable
213+
- run: pip install --no-index --find-links=target/wheels/ reasonable
214214
- run: rm -r target/wheels
215215
- run: maturin build --release --target universal2-apple-darwin --features abi3
216216
working-directory: ./python
@@ -222,7 +222,7 @@ jobs:
222222
if: github.event_name == 'release'
223223
- uses: actions/upload-artifact@v4
224224
with:
225-
name: pyreasonable_macos
225+
name: reasonable_macos
226226
path: target/wheels/*.whl
227227

228228
wheel_windows:
@@ -243,20 +243,20 @@ jobs:
243243
- run: pip install -r python/requirements.dev.txt
244244
- run: maturin build --release --features abi3
245245
working-directory: ./python
246-
- run: pip install --no-index --find-links=target/wheels/ pyreasonable
246+
- run: pip install --no-index --find-links=target/wheels/ reasonable
247247
- run: rm -r target/wheels
248248
- run: maturin build --release -m python/Cargo.toml --features abi3
249249
- uses: actions/upload-artifact@v4
250250
with:
251-
name: pyreasonable_windows
251+
name: reasonable_windows
252252
path: target/wheels/*.whl
253253

254254
publish_pypi:
255255
if: github.event_name == 'release'
256256
runs-on: ubuntu-latest
257257
environment:
258258
name: publish
259-
url: https://pypi.org/p/pyreasonable
259+
url: https://pypi.org/p/reasonable
260260
permissions:
261261
id-token: write
262262
needs:
@@ -268,7 +268,7 @@ jobs:
268268
steps:
269269
- uses: actions/download-artifact@v4
270270
with:
271-
pattern: pyreasonable_*
271+
pattern: reasonable_*
272272
path: dist
273273
merge-multiple: true
274274
- uses: pypa/gh-action-pypi-publish@release/v1

0 commit comments

Comments
 (0)