Skip to content

Commit 0da0387

Browse files
authored
ensure latest version of maturin is used when building (n0-computer#119)
1 parent 5b702e3 commit 0da0387

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/wheels.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ jobs:
4040
source $HOME/.cargo/env
4141
PATH=/opt/python/cp311-cp311/bin:$PATH
4242
export PATH
43+
maturin --version
4344
maturin build --release --manylinux 2014
4445
- name: Upload wheel
4546
uses: actions/upload-artifact@v3
@@ -73,9 +74,10 @@ jobs:
7374
python-version: ${{ matrix.python }}
7475
- name: Install maturin & uniffi-bindgen
7576
run: |
76-
pip install maturin uniffi-bindgen
77+
pip install -U maturin uniffi-bindgen
7778
- name: Build wheel
7879
run: |
80+
maturin --version
7981
maturin build --release
8082
- name: Upload wheel
8183
uses: actions/upload-artifact@v3
@@ -93,9 +95,10 @@ jobs:
9395
python-version: '3.11'
9496
- name: Install maturin & uniffi-bindgen
9597
run: |
96-
pip install maturin uniffi-bindgen
98+
pip install -U maturin uniffi-bindgen
9799
- name: Build wheel
98100
run: |
101+
maturin --version
99102
maturin build --release
100103
- name: Upload wheel
101104
uses: actions/upload-artifact@v3

0 commit comments

Comments
 (0)