Skip to content

Commit

Permalink
fix: prevent semantic release from ruining manylinux builds
Browse files Browse the repository at this point in the history
by some reason building source distribution by python-semantic-release
deletes previously built manylinux wheels
  • Loading branch information
user2589 committed Jan 4, 2021
1 parent 02adcbb commit 0cf11ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ requires = ["setuptools>=18.0", "wheel", "Cython"]

[tool.semantic_release]
version_variable = ['oscar.pyx:__version__', 'docs/conf.py:release']
# wheel build is performed by manylinux, so leave only sdist here
build_command = 'python setup.py sdist'
# wheel build is performed by manylinux, so just skip it
build_command = ''
# remove_dist deletes all pre-existing files in dist/, including built by manylinux
remove_dist = false

0 comments on commit 0cf11ec

Please sign in to comment.