File tree 2 files changed +7
-6
lines changed
2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 2
2
History
3
3
=======
4
4
5
- 0.8.3 (2017-06-24)
5
+ 0.8.4 (2017-06-24)
6
6
------------------
7
7
8
8
* First release on PyPI.
Original file line number Diff line number Diff line change @@ -77,16 +77,17 @@ install:
77
77
- set PATH=%PATH%;C:\Users\appveyor\.cargo\bin
78
78
- rustc -Vv
79
79
- cargo -V
80
- - " %PYTHON_DIR%\\ python.exe -m pip install -U pip>=9.0.1 wheel"
81
- - " %PYTHON_DIR%\\ python.exe -m pip install ruamel.yaml==0.14.12 --no-binary :all:"
80
+ - " %PYTHON_DIR%\\ python.exe -m pip install -U pip>=9.0.1"
81
+ # without updating wheel and setuptools, ruamel.yaml will fail on python 3.4
82
+ - " %PYTHON_DIR%\\ python.exe -m pip install -U wheel setuptools"
82
83
- " %PYTHON_DIR%\\ python.exe -m pip install -U urllib3[secure] scikit-ci==0.14.0"
83
- - " %PYTHON_DIR%\\ python -m ci install"
84
+ - " %PYTHON_DIR%\\ python.exe -m ci install"
84
85
85
86
build_script :
86
- - " %PYTHON_DIR%\\ python -m ci build"
87
+ - " %PYTHON_DIR%\\ python.exe -m ci build"
87
88
88
89
test_script :
89
- - " %PYTHON_DIR%\\ python -m ci test"
90
+ - " %PYTHON_DIR%\\ python.exe -m ci test"
90
91
- ps : >-
91
92
Get-ChildItem .\dist\
92
93
You can’t perform that action at this time.
0 commit comments