Skip to content

Commit 1ca0b35

Browse files
committed
fix deploy scripts
1 parent a0690bf commit 1ca0b35

File tree

4 files changed

+6
-9
lines changed

4 files changed

+6
-9
lines changed

.travis.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ deploy:
122122
# this is for pypi. Will fail if you haven't run
123123
# "python -m twine register ... " to register with pypi
124124
- provider: script
125-
script: python -m twine upload $(find wheelhouse/ -type f -name '*.whl')
125+
script: find wheelhouse/ -type f -name '*.whl' -print |xargs -n1 python -m twine upload
126126
on:
127127
tags: true
128128
- provider: releases
@@ -134,7 +134,6 @@ deploy:
134134
secure: "Wfy2/s+LddUBK4TfKcrXVLJO8TQQEY+ZMYKjwOGnjjHdM0FzcHfKauLr2by10o1qKzV+KpsJov/HZdlAK8jfOvzrMPLQWzjhEp8yxSFhyfy1gCEdPZY1rNCpVM9S/JYIl4QHpzr+fQq67ZHn9Qx72ImsRUweq77aqNL9vRlWRsCr4bQwvLG6cka3NJ5yf8m4xdQ/X9pdxGePryxpzah+KKvpXgHjJ+hAa0ckVE7OAYz5fhu3ceaGbU1Dw3g2Tzthcd2BpDN+tZf9CDqKfCvQ7AdVWzB/lcl21COZ+p8NepPjcg+OF8Nt4ez6aMTutlpECJPf0i2zhiLK8bljol6NYUjRJTobnUV8EQaBxDha447ExrmtGKscKjh0u7ys7ARZqztUvDj6CHOz14hEoI7duBN094x9KihPOoWSMmZ2hFIDUaLa9AcQWZjhAFChFDa95hhxs3kLx80Azx6uwEJ6ETA/ZlNrW9FFnCwrWL/k9QhT1UvtuHgRhZV8snp0pAdgQ8HCgyWAr1c1KNJ9AuXs1My9kVjcbXcglCmRp0JLDo0MA8iALfkOvLpdkK6viFq29Lp7WgPpSNRUGB70DBFUzMTim/GkeOrpCc6TcN+vKN7/XVG/OkmB/XA1+S1lOEtzJZlZaqms9Pi1L75deu08pK62SBzsxjSGdjwMwtToT2k="
135135
file_glob: true
136136
file: wheelhouse/rust_pypi_example*.whl
137-
# file: $CRATE_NAME-$TRAVIS_TAG-$TARGET.*
138137
on:
139138
# TODO Here you can pick which targets will generate binary releases
140139
# 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.1 (2017-06-18)
5+
0.7.2 (2017-06-18)
66
------------------
77

88
* First release on PyPI.

appveyor.yml

-2
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,6 @@ deploy:
8383
script: "%PYTHON_DIR%\\python -m ci after_test"
8484
on:
8585
appveyor_repo_tag: true
86-
branch: master
8786

8887
- provider: GitHub
8988
# TODO update `auth_token.secure`
@@ -99,7 +98,6 @@ deploy:
9998
# and nightly channels. This condition makes sure there is only one release
10099
# for such targets and that's generated using the stable channel
101100
appveyor_repo_tag: true
102-
branch: master
103101

104102
cache:
105103
- C:\Users\appveyor\.cargo\registry

setup.cfg

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[bumpversion]
22
current_version = 0.7.2
3-
commit = True
43
tag = True
4+
commit = True
55

66
[bumpversion:file:setup.py]
77
search = version='{current_version}'
@@ -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)