From d69ca21ce468644cf40b99ea62b70dc8ef2f3fa9 Mon Sep 17 00:00:00 2001 From: Samuel Colvin Date: Thu, 30 May 2019 16:15:55 +0100 Subject: [PATCH] add 'none-any.whl' to pypi upload (#564) * add 'none-any.whl' to pypi upload * reset 'if' --- .travis.yml | 3 ++- Makefile | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index e5f40fb..6a78adf 100644 --- a/.travis.yml +++ b/.travis.yml @@ -81,8 +81,9 @@ jobs: install: skip script: - ./tests/check_tag.py - - pip install -U cibuildwheel + - pip install -U cibuildwheel wheel - cibuildwheel --output-dir dist + - SKIP_CYTHON=1 python setup.py sdist bdist_wheel - ls -lha dist env: - 'PIP=pip' diff --git a/Makefile b/Makefile index 7fbe9f2..edc0f9a 100644 --- a/Makefile +++ b/Makefile @@ -84,6 +84,7 @@ clean: rm -f .coverage rm -f .coverage.* rm -rf build + rm -rf dist rm -f pydantic/*.c pydantic/*.so python setup.py clean make -C docs clean