Skip to content
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ install:
script:
- export MPLBACKEND=SVG
- python -c "import contact_map"
- python autorelease_check.py --branch ${TRAVIS_BRANCH} --event ${TRAVIS_EVENT_TYPE}
- python autorelease_check.py --branch ${TRAVIS_BRANCH} --event ${TRAVIS_EVENT_TYPE} #--allow-patch-skip # allow-patch-skip if there was a testpypi problem
- py.test -vv --cov=contact_map --cov-report xml:cov.xml

after_success:
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
python: '3.6'
install:
- source ci/pip-install/install_requirements.sh
- pip install -r ci/pip-install/testing_requirements.txt
- pip install -U -r ci/pip-install/testing_requirements.txt
- pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple contact_map
script:
- cd ~
Expand Down
2 changes: 1 addition & 1 deletion ci/conda-recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package:
name: contact_map
# add ".dev0" for unreleased versions
version: "0.4.0.dev0"
version: "0.5.0.dev0"

source:
path: ../../
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
####################### USER SETUP AREA #################################
# * VERSION: base version (do not include .dev0, etc -- that's automatic)
# * IS_RELEASE: whether this is a release
VERSION = "0.4.0"
VERSION = "0.5.0"
IS_RELEASE = False

DEV_NUM = 0 # always 0: we don't do public (pypi) .dev releases
Expand Down