Skip to content

Commit b44a895

Browse files
committed
Build installers for orange3 release 3.4.2
1 parent 0a49b0f commit b44a895

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ env:
66
# Branch (or any remote ref, i.e. pull/10/head) to fetch
77
- BUILD_BRANCH=master
88
# Commit tag/ref to checkout
9-
- BUILD_COMMIT=HEAD
9+
- BUILD_COMMIT=3.4.2
1010

1111
cache:
1212
ccache: true

appveyor.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -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

2427
cache:
25-
- '%LOCALAPPDATA%\pip\Cache' -> appveyor.yml
28+
- '%LOCALAPPDATA%\pip\Cache -> appveyor.yml'
2629

2730
build_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

Comments
 (0)