From adbf45978605a48f2baa028c928c5260498c007e Mon Sep 17 00:00:00 2001 From: mckaymatt Date: Sun, 18 Jun 2017 19:15:45 -0400 Subject: [PATCH] fix layouts --- .travis.yml | 3 ++- HISTORY.rst | 2 +- appveyor.yml | 3 +-- scikit-ci.yml | 1 + setup.cfg | 6 +++--- 5 files changed, 8 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index 76ab234..5eaa0d6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -112,7 +112,6 @@ script: - bash ci/script.sh deploy: - skip_cleanup: true # After you create the Github repo and add it to Travis, run the # travis_pypi_setup.py script to finish PyPI deployment setup @@ -120,6 +119,7 @@ deploy: # "python -m twine register ... " to register with pypi - provider: script script: ci/pypi_upload.sh + skip_cleanup: true on: tags: true - provider: releases @@ -131,6 +131,7 @@ deploy: secure: "Wfy2/s+LddUBK4TfKcrXVLJO8TQQEY+ZMYKjwOGnjjHdM0FzcHfKauLr2by10o1qKzV+KpsJov/HZdlAK8jfOvzrMPLQWzjhEp8yxSFhyfy1gCEdPZY1rNCpVM9S/JYIl4QHpzr+fQq67ZHn9Qx72ImsRUweq77aqNL9vRlWRsCr4bQwvLG6cka3NJ5yf8m4xdQ/X9pdxGePryxpzah+KKvpXgHjJ+hAa0ckVE7OAYz5fhu3ceaGbU1Dw3g2Tzthcd2BpDN+tZf9CDqKfCvQ7AdVWzB/lcl21COZ+p8NepPjcg+OF8Nt4ez6aMTutlpECJPf0i2zhiLK8bljol6NYUjRJTobnUV8EQaBxDha447ExrmtGKscKjh0u7ys7ARZqztUvDj6CHOz14hEoI7duBN094x9KihPOoWSMmZ2hFIDUaLa9AcQWZjhAFChFDa95hhxs3kLx80Azx6uwEJ6ETA/ZlNrW9FFnCwrWL/k9QhT1UvtuHgRhZV8snp0pAdgQ8HCgyWAr1c1KNJ9AuXs1My9kVjcbXcglCmRp0JLDo0MA8iALfkOvLpdkK6viFq29Lp7WgPpSNRUGB70DBFUzMTim/GkeOrpCc6TcN+vKN7/XVG/OkmB/XA1+S1lOEtzJZlZaqms9Pi1L75deu08pK62SBzsxjSGdjwMwtToT2k=" file_glob: true file: wheelhouse/rust_pypi_example*.whl + skip_cleanup: true on: # TODO Here you can pick which targets will generate binary releases # In this example, there are some targets that are tested using the stable diff --git a/HISTORY.rst b/HISTORY.rst index ece13d2..740b86e 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,7 +2,7 @@ History ======= -0.7.3 (2017-06-18) +0.7.4 (2017-06-18) ------------------ * First release on PyPI. diff --git a/appveyor.yml b/appveyor.yml index 3df7fde..c81cad9 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -80,8 +80,7 @@ artifacts: deploy: # upload to pypi with twine. - provider: script - script: - - "%PYTHON_DIR%\\python -m ci after_test" + script: "%PYTHON_DIR%\\python -m ci after_test" on: appveyor_repo_tag: true diff --git a/scikit-ci.yml b/scikit-ci.yml index eff610b..bdba404 100644 --- a/scikit-ci.yml +++ b/scikit-ci.yml @@ -48,3 +48,4 @@ after_test: commands: - $ $ -m pip install --upgrade twine urllib3[secure] - $ $ -m twine upload wheelhouse\* + diff --git a/setup.cfg b/setup.cfg index 76ca84d..d46e8d0 100644 --- a/setup.cfg +++ b/setup.cfg @@ -19,13 +19,13 @@ replace = {new_version} search = {current_version} replace = {new_version} + [flake8] exclude = docs [aliases] -test = pytest +test=pytest [tool:pytest] testpaths = tests -addopts = --verbose - +addopts = --verbose \ No newline at end of file