From ce51c5a56cf78597edc82af5dfd809ae6fea2097 Mon Sep 17 00:00:00 2001 From: Simon Zeng Date: Sat, 27 Feb 2021 15:29:54 -0500 Subject: [PATCH] Fix release workflow --- .github/workflows/ci.yml | 4 ++-- Cargo.toml | 2 +- pyproject.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 32781fb..3696eeb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -103,7 +103,7 @@ jobs: poetry install - name: Build Python package - run: poetry run maturin build --manylinux 2010-unchecked --release --no-sdist --strip --interpreter python${{matrix.python_version}} + run: poetry run maturin build --manylinux 2010 --skip-auditwheel --release --no-sdist --strip --interpreter python${{matrix.python_version}} - name: List wheels if: matrix.os == 'windows-latest' @@ -135,7 +135,7 @@ jobs: if: matrix.os == 'ubuntu-latest' env: MATURIN_PASSWORD: ${{ secrets.PYPI }} - run: poetry run maturin publish --no-sdist --manylinux 2010-unchecked --username __token__ --interpreter python${{matrix.python_version}} + run: poetry run maturin publish --no-sdist --manylinux 2010 --skip-auditwheel --username __token__ --interpreter python${{matrix.python_version}} - name: PyPi publish if: matrix.os != 'ubuntu-latest' diff --git a/Cargo.toml b/Cargo.toml index 2409cc9..d01db7f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dhall" -version = "0.1.6" +version = "0.1.7" authors = ["Simon Zeng ", "Tristan Cacqueray ", "Matthias Endler "] description = "Python bindings for dhall, a functional configuration language" edition = "2018" diff --git a/pyproject.toml b/pyproject.toml index 4739dd9..0ced6b3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "dhall" -version = "0.1.6" +version = "0.1.7" description = "Python bindings for dhall, a functional configuration language" authors = ["Simon Zeng ", "Tristan Cacqueray ", "Matthias Endler "] license = "Apache-2.0"