Skip to content

Commit

Permalink
Merge pull request #62 from samuelstjean/buildbots_v06
Browse files Browse the repository at this point in the history
Buildbots v06
  • Loading branch information
samuelstjean authored Oct 22, 2017
2 parents 823ac3c + 5feb4df commit cec8ac6
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 11 deletions.
14 changes: 10 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,10 +113,6 @@ matrix:
wget https://raw.githubusercontent.com/praekeltfoundation/travis-pyenv/master/setup-pyenv.sh;
PYTHON_CONFIGURE_OPTS='--enable-framework' source setup-pyenv.sh;
fi
# - pyenv install 3.5.2
# - pyenv local 3.5.2
# - pyenv virtualenv 3.5.2 buildfarm
# - pyenv activate buildfarm
env:
- DEPENDS=$DEPENDS_BUILD
DEPENDS_PIP=$DEPENDS_PIP_BUILD
Expand Down Expand Up @@ -157,3 +153,13 @@ script:

#after_success:
# - coveralls

deploy:
provider: releases
api_key:
- secure: "HgpgpOHK38IV2ctAAEkvEWmCvLcL3hClZOuqz+JQ+vaHL7G3DtRiig0xGKc3ggkd3wP+ic9FaueFJBIrw/QAsNrCwjwT1cd5X4XZIccpXAh81mLUtk147Y5XUGes5uQB8krejj9mIb7G8n2KrpDURi8p9tDr/jmyFk/E76Hrg+JsxqruXfHvMqyc4qZ/T+bO3nczkP25PXPkeKUtuTxhlVEN31L6WYPvNM/kdev3QU0584saraD2Ex6K+eua4BoKuBA7dUPjLd0n+HEIXeAVxhPU0LoNSj6pM2+WAKRJj+7FWWgKml2vIkttcy2G2DIfQWnZjD/Z9K+owG1le0fROrvMttfd5bmSBxun3AB4CSfs6wjIeB8pNQ4D1Y5tqPydy9rkKSBZ4C5HIT8a23nZYnXmSAL440WtFPtDfSco0xW23Wmyx9NmKN8X/bFCFdd5KRV+w/rq0wBOz5grYkkffix3N7cxAwPZKc3tkJb+mTkTeMAJpEQ2SHPakjvH0kB4TkpDvAE06BJZm3DRGLeCOpV5SF/Bb06TvrOSNmgyHZ35STyAXuUjX0iFQKc2717BXnMNL+u+5FGlGIlyjsngPcGBWj7dI8Dv+Ci9+s7Qw6zmwV+eMUyjyCBggk05PZTcXHSv7pFyMFKpjXtNrRN2nylHDDUwTMx2vu0ai0ecKpU="
file_glob: true
file: nlsam_*_x64.zip
skip_cleanup: true
on:
tags: true
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## [0.6] - Development version
## [0.6] - 2017-10-22

- PIESNO will now warn if less than 1% of noisy voxels were identified, which might indicate that something has gone wrong during the noise estimation.
- On python >= 3.4, --mp_method [a_valid_start_method](https://docs.python.org/3/library/multiprocessing.html#contexts-and-start-methods) can now be used to control behavior in the multiprocessing loop.
Expand Down
14 changes: 9 additions & 5 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,13 @@ after_test:
artifacts:
- path: dist/*.tar.gz
- path: nlsam_windows_x64.zip
# - path: "wheelhouse\\*.whl"
# name: Wheels

# deploy:
# - "pip install pyinstaller"
# artifact: stuff.zip
deploy:
description: 'Release description'
provider: GitHub
auth_token:
secure: CQNO3VUc9HHSetiBExiUYsL7xZDr3x+/GnlEQtPfDpkXafs0Ghui10pks7GTIyyD
artifact: nlsam_windows_x64.zip, dist/*.tar.gz
on:
branch: master # release from master branch only
appveyor_repo_tag: true # deploy on tag push only
2 changes: 1 addition & 1 deletion nlsam/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def get_setup_params():
params['author'] = 'Samuel St-Jean'
params['author_email'] = 'samuel@isi.uu.nl'
params['url'] = 'https://github.com/samuelstjean/nlsam'
params['version'] = '0.5.1'
params['version'] = '0.6'
params['install_requires'] = ['numpy>=1.10.4',
'scipy>=0.14',
'cython>=0.21',
Expand Down

0 comments on commit cec8ac6

Please sign in to comment.