@@ -9,6 +9,9 @@ environment:
99 # fixes build env dependencies for building orange3 wheels
1010 BUILD_DEPS : --only-binary numpy --extra-index-url=https://pypi.anaconda.org/ales-erjavec/simple numpy==1.9.3 wheel
1111
12+ # Orange version (released on PyPI)
13+ VERSION : 3.4.2
14+
1215 # Note the python version here referes to the one included in the installer
1316 # not the one used for building/packaging
1417 matrix :
@@ -22,7 +25,7 @@ matrix:
2225 fast_finish : true
2326
2427cache :
25- - ' %LOCALAPPDATA%\pip\Cache' -> appveyor.yml
28+ - ' %LOCALAPPDATA%\pip\Cache -> appveyor.yml'
2629
2730build_script :
2831 # assuming pyminor never goes over 9
@@ -42,11 +45,11 @@ build_script:
4245 - ' python -c "import sys; assert not sys.version_info[:3] == (3, 6, 1)"'
4346 - python --version
4447 - python -m pip --version
45- - python -m pip install %BUILD_DEPS%
46- - python setup.py %BUILD_OPTIONS% bdist_wheel -d ../wheels
47- - for /f %%s in ( 'python setup.py --version' ) do ( set VERSION=%%s )
48+ # - python -m pip install %BUILD_DEPS%
49+ # - python setup.py %BUILD_OPTIONS% bdist_wheel -d ../wheels
50+ # - for /f %%s in ( 'python setup.py --version' ) do ( set VERSION=%%s )
4851 # Strip newline from the end (.TrimEnd() does not work ????)
49- - ps : $Env:VERSION = ( ( $Env:VERSION + " " ).trim() )
52+ # - ps: $Env:VERSION = ( ( $Env:VERSION + " " ).trim() )
5053 - echo VERSION = %VERSION%
5154 # add msys2 and NSIS to path
5255 - set PATH=C:\msys64\usr\bin;C:\Program Files (x86)\NSIS;%PATH%
0 commit comments