Skip to content

Commit adbf459

Browse files
committed
fix layouts
1 parent 017080c commit adbf459

File tree

5 files changed

+8
-7
lines changed

5 files changed

+8
-7
lines changed

.travis.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -112,14 +112,14 @@ script:
112112
- bash ci/script.sh
113113

114114
deploy:
115-
skip_cleanup: true
116115
# After you create the Github repo and add it to Travis, run the
117116
# travis_pypi_setup.py script to finish PyPI deployment setup
118117

119118
# this is for pypi. Will fail if you haven't run
120119
# "python -m twine register ... " to register with pypi
121120
- provider: script
122121
script: ci/pypi_upload.sh
122+
skip_cleanup: true
123123
on:
124124
tags: true
125125
- provider: releases
@@ -131,6 +131,7 @@ deploy:
131131
secure: "Wfy2/s+LddUBK4TfKcrXVLJO8TQQEY+ZMYKjwOGnjjHdM0FzcHfKauLr2by10o1qKzV+KpsJov/HZdlAK8jfOvzrMPLQWzjhEp8yxSFhyfy1gCEdPZY1rNCpVM9S/JYIl4QHpzr+fQq67ZHn9Qx72ImsRUweq77aqNL9vRlWRsCr4bQwvLG6cka3NJ5yf8m4xdQ/X9pdxGePryxpzah+KKvpXgHjJ+hAa0ckVE7OAYz5fhu3ceaGbU1Dw3g2Tzthcd2BpDN+tZf9CDqKfCvQ7AdVWzB/lcl21COZ+p8NepPjcg+OF8Nt4ez6aMTutlpECJPf0i2zhiLK8bljol6NYUjRJTobnUV8EQaBxDha447ExrmtGKscKjh0u7ys7ARZqztUvDj6CHOz14hEoI7duBN094x9KihPOoWSMmZ2hFIDUaLa9AcQWZjhAFChFDa95hhxs3kLx80Azx6uwEJ6ETA/ZlNrW9FFnCwrWL/k9QhT1UvtuHgRhZV8snp0pAdgQ8HCgyWAr1c1KNJ9AuXs1My9kVjcbXcglCmRp0JLDo0MA8iALfkOvLpdkK6viFq29Lp7WgPpSNRUGB70DBFUzMTim/GkeOrpCc6TcN+vKN7/XVG/OkmB/XA1+S1lOEtzJZlZaqms9Pi1L75deu08pK62SBzsxjSGdjwMwtToT2k="
132132
file_glob: true
133133
file: wheelhouse/rust_pypi_example*.whl
134+
skip_cleanup: true
134135
on:
135136
# TODO Here you can pick which targets will generate binary releases
136137
# In this example, there are some targets that are tested using the stable

HISTORY.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
History
33
=======
44

5-
0.7.3 (2017-06-18)
5+
0.7.4 (2017-06-18)
66
------------------
77

88
* First release on PyPI.

appveyor.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,7 @@ artifacts:
8080
deploy:
8181
# upload to pypi with twine.
8282
- provider: script
83-
script:
84-
- "%PYTHON_DIR%\\python -m ci after_test"
83+
script: "%PYTHON_DIR%\\python -m ci after_test"
8584
on:
8685
appveyor_repo_tag: true
8786

scikit-ci.yml

+1
Original file line numberDiff line numberDiff line change
@@ -48,3 +48,4 @@ after_test:
4848
commands:
4949
- $<RUN_ENV> $<PYTHON> -m pip install --upgrade twine urllib3[secure]
5050
- $<RUN_ENV> $<PYTHON> -m twine upload wheelhouse\*
51+

setup.cfg

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ replace = {new_version}
1919
search = {current_version}
2020
replace = {new_version}
2121

22+
2223
[flake8]
2324
exclude = docs
2425

2526
[aliases]
26-
test = pytest
27+
test=pytest
2728

2829
[tool:pytest]
2930
testpaths = tests
30-
addopts = --verbose
31-
31+
addopts = --verbose

0 commit comments

Comments
 (0)