Skip to content

Commit

Permalink
fix layouts
Browse files Browse the repository at this point in the history
  • Loading branch information
mckaymatt committed Jun 18, 2017
1 parent 017080c commit adbf459
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,14 +112,14 @@ 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

# this is for pypi. Will fail if you haven't run
# "python -m twine register ... " to register with pypi
- provider: script
script: ci/pypi_upload.sh
skip_cleanup: true
on:
tags: true
- provider: releases
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
History
=======

0.7.3 (2017-06-18)
0.7.4 (2017-06-18)
------------------

* First release on PyPI.
3 changes: 1 addition & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
1 change: 1 addition & 0 deletions scikit-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,3 +48,4 @@ after_test:
commands:
- $<RUN_ENV> $<PYTHON> -m pip install --upgrade twine urllib3[secure]
- $<RUN_ENV> $<PYTHON> -m twine upload wheelhouse\*

6 changes: 3 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit adbf459

Please sign in to comment.