From 3c1ef40b80590e0a0506180d8a0bbc09355135ec Mon Sep 17 00:00:00 2001 From: justvanrossum Date: Fri, 11 Sep 2020 10:13:08 +0200 Subject: [PATCH] Add missing cython dependency for setup.py, so sdist can work. This fixes #59 --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index c204a65..757fee3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -40,6 +40,7 @@ script: $PYTHON -m pip install $PIP_INSTALL_OPTIONS twine if [[ $TRAVIS_OS_NAME == osx ]]; then $PYTHON -m pip install $PIP_INSTALL_OPTIONS setuptools + $PYTHON -m pip install $PIP_INSTALL_OPTIONS cython $PYTHON setup.py sdist $PYTHON -m twine upload dist/*.zip fi