From 0cf11ecf8e07928d62eebfda883997c64b349481 Mon Sep 17 00:00:00 2001 From: user2589 Date: Sun, 3 Jan 2021 20:52:44 -0500 Subject: [PATCH] fix: prevent semantic release from ruining manylinux builds by some reason building source distribution by python-semantic-release deletes previously built manylinux wheels --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 07c1684..2820f39 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 \ No newline at end of file