Skip to content

Commit

Permalink
Fix release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
s-zeng committed Feb 27, 2021
1 parent e5ca263 commit ce51c5a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dhall"
version = "0.1.6"
version = "0.1.7"
authors = ["Simon Zeng <[email protected]>", "Tristan Cacqueray <[email protected]>", "Matthias Endler <[email protected]>"]
description = "Python bindings for dhall, a functional configuration language"
edition = "2018"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>", "Tristan Cacqueray <[email protected]>", "Matthias Endler <[email protected]>"]
license = "Apache-2.0"
Expand Down

0 comments on commit ce51c5a

Please sign in to comment.