From ea0cd54cd9c8021ffbb29e6db746bed1665c4bd8 Mon Sep 17 00:00:00 2001 From: Mika Koivistoinen Date: Mon, 6 Aug 2018 13:48:18 +0300 Subject: [PATCH 1/2] Remove CLI compiling from releases --- .travis.yml | 2 -- appveyor.yml | 10 +++------- 2 files changed, 3 insertions(+), 9 deletions(-) diff --git a/.travis.yml b/.travis.yml index 6628b07a3..b97cdc390 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,12 +14,10 @@ install: script: - echo "@TODO - Running tests..." - pyinstaller --distpath dist/$TRAVIS_OS_NAME gui.spec - - pyinstaller --distpath dist/$TRAVIS_OS_NAME cli.spec before_deploy: - git config --local user.name "Travis" - git config --local user.email "travis@travis-ci.org" - git tag "$(date +'%Y%m%d%H%M%S')-$(git log --format=%h -1)" - - tar -czvf dist/DEXBot-cli-$TRAVIS_OS_NAME-$TRAVIS_TAG.tar.gz dist/$TRAVIS_OS_NAME/DEXBot-cli - tar -czvf dist/DEXBot-gui-$TRAVIS_OS_NAME-$TRAVIS_TAG.tar.gz dist/$TRAVIS_OS_NAME/DEXBot-gui deploy: - provider: releases diff --git a/appveyor.yml b/appveyor.yml index faabc242f..e99c2d046 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -8,7 +8,7 @@ environment: - PYTHON: "C:\\Python35-x64" #---------------------------------# -# build # +# Build # #---------------------------------# build: off @@ -24,7 +24,6 @@ install: after_test: - make package - - '7z a DEXBot-cli-win64.zip %APPVEYOR_BUILD_FOLDER%\dist\DEXBot-cli.exe' - '7z a DEXBot-gui-win64.zip %APPVEYOR_BUILD_FOLDER%\dist\DEXBot-gui.exe' # @TODO: Run tests.. @@ -32,14 +31,11 @@ test_script: - "echo tests..." artifacts: - - path: DEXBot-cli-win64.zip - name: DEXBot-cli-win64.zip - - path: DEXBot-gui-win64.zip name: DEXBot-gui-win64.zip #---------------------------------# -# deployment # +# Deployment # #---------------------------------# shallow_clone: false @@ -57,7 +53,7 @@ deploy: appveyor_repo_tag: true # deploy on tag push only #---------------------------------# -# notifications # +# Notifications # #---------------------------------# notifications: From d9e1cf93451ce84a97332fb0fa131d3d2755f515 Mon Sep 17 00:00:00 2001 From: Mika Koivistoinen Date: Mon, 6 Aug 2018 14:04:39 +0300 Subject: [PATCH 2/2] Change dexbot version number to 0.5.10 --- dexbot/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dexbot/__init__.py b/dexbot/__init__.py index efafbef00..c0ea7099b 100644 --- a/dexbot/__init__.py +++ b/dexbot/__init__.py @@ -1,4 +1,4 @@ APP_NAME = 'dexbot' -VERSION = '0.5.7' +VERSION = '0.5.10' AUTHOR = 'Codaone Oy' __version__ = VERSION