Skip to content

Commit

Permalink
upgrade maturin to 1.7.6
Browse files Browse the repository at this point in the history
  • Loading branch information
cdump committed Dec 2, 2024
1 parent 932284a commit 647536d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
- name: Build
uses: PyO3/maturin-action@v1
with:
maturin-version: 1.7.0
maturin-version: 1.7.6
target: ${{ matrix.platform.target }}
manylinux: auto
args: -i ${{ matrix.python-version }} --release --out dist
Expand All @@ -98,7 +98,7 @@ jobs:
- name: Build sdist
uses: PyO3/maturin-action@v1
with:
maturin-version: 1.7.0
maturin-version: 1.7.6
command: sdist
args: --out dist
- name: Upload artifacts
Expand Down
4 changes: 2 additions & 2 deletions benchmark/providers/evmole-py/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# syntax=docker/dockerfile:1

FROM rust:1.82 AS build
RUN wget https://github.com/PyO3/maturin/releases/download/v1.7.0/maturin-musl_1.7.0_amd64.deb \
&& apt-get install ./maturin-*.deb
RUN wget https://github.com/PyO3/maturin/releases/download/v1.7.6/maturin-x86_64-unknown-linux-musl.tar.gz \
&& tar xf maturin-*.tar.gz && mv maturin /usr/local/bin/
COPY ./rust /workdir
WORKDIR /workdir
RUN maturin build --release --out wheel/
Expand Down

0 comments on commit 647536d

Please sign in to comment.