File tree 4 files changed +6
-9
lines changed
4 files changed +6
-9
lines changed Original file line number Diff line number Diff line change @@ -122,7 +122,7 @@ deploy:
122
122
# this is for pypi. Will fail if you haven't run
123
123
# "python -m twine register ... " to register with pypi
124
124
- 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
126
126
on :
127
127
tags : true
128
128
- provider : releases
@@ -134,7 +134,6 @@ deploy:
134
134
secure : " Wfy2/s+LddUBK4TfKcrXVLJO8TQQEY+ZMYKjwOGnjjHdM0FzcHfKauLr2by10o1qKzV+KpsJov/HZdlAK8jfOvzrMPLQWzjhEp8yxSFhyfy1gCEdPZY1rNCpVM9S/JYIl4QHpzr+fQq67ZHn9Qx72ImsRUweq77aqNL9vRlWRsCr4bQwvLG6cka3NJ5yf8m4xdQ/X9pdxGePryxpzah+KKvpXgHjJ+hAa0ckVE7OAYz5fhu3ceaGbU1Dw3g2Tzthcd2BpDN+tZf9CDqKfCvQ7AdVWzB/lcl21COZ+p8NepPjcg+OF8Nt4ez6aMTutlpECJPf0i2zhiLK8bljol6NYUjRJTobnUV8EQaBxDha447ExrmtGKscKjh0u7ys7ARZqztUvDj6CHOz14hEoI7duBN094x9KihPOoWSMmZ2hFIDUaLa9AcQWZjhAFChFDa95hhxs3kLx80Azx6uwEJ6ETA/ZlNrW9FFnCwrWL/k9QhT1UvtuHgRhZV8snp0pAdgQ8HCgyWAr1c1KNJ9AuXs1My9kVjcbXcglCmRp0JLDo0MA8iALfkOvLpdkK6viFq29Lp7WgPpSNRUGB70DBFUzMTim/GkeOrpCc6TcN+vKN7/XVG/OkmB/XA1+S1lOEtzJZlZaqms9Pi1L75deu08pK62SBzsxjSGdjwMwtToT2k="
135
135
file_glob : true
136
136
file : wheelhouse/rust_pypi_example*.whl
137
- # file: $CRATE_NAME-$TRAVIS_TAG-$TARGET.*
138
137
on :
139
138
# TODO Here you can pick which targets will generate binary releases
140
139
# In this example, there are some targets that are tested using the stable
Original file line number Diff line number Diff line change 2
2
History
3
3
=======
4
4
5
- 0.7.1 (2017-06-18)
5
+ 0.7.2 (2017-06-18)
6
6
------------------
7
7
8
8
* First release on PyPI.
Original file line number Diff line number Diff line change @@ -83,7 +83,6 @@ deploy:
83
83
script : " %PYTHON_DIR%\\ python -m ci after_test"
84
84
on :
85
85
appveyor_repo_tag : true
86
- branch : master
87
86
88
87
- provider : GitHub
89
88
# TODO update `auth_token.secure`
@@ -99,7 +98,6 @@ deploy:
99
98
# and nightly channels. This condition makes sure there is only one release
100
99
# for such targets and that's generated using the stable channel
101
100
appveyor_repo_tag : true
102
- branch : master
103
101
104
102
cache :
105
103
- C:\Users\appveyor\.cargo\registry
Original file line number Diff line number Diff line change 1
1
[bumpversion]
2
2
current_version = 0.7.2
3
- commit = True
4
3
tag = True
4
+ commit = True
5
5
6
6
[bumpversion:file:setup.py]
7
7
search = version =' {current_version}'
@@ -19,13 +19,13 @@ replace = {new_version}
19
19
search = {current_version}
20
20
replace = {new_version}
21
21
22
+
22
23
[flake8]
23
24
exclude = docs
24
25
25
26
[aliases]
26
- test = pytest
27
+ test = pytest
27
28
28
29
[tool:pytest]
29
30
testpaths = tests
30
- addopts = --verbose
31
-
31
+ addopts = --verbose
You can’t perform that action at this time.
0 commit comments