diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 83f4ba8..bb88810 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 @@ -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 diff --git a/benchmark/providers/evmole-py/Dockerfile b/benchmark/providers/evmole-py/Dockerfile index 8a8ea8c..b20787b 100644 --- a/benchmark/providers/evmole-py/Dockerfile +++ b/benchmark/providers/evmole-py/Dockerfile @@ -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/