Compare commits

..

3 Commits

Author SHA1 Message Date
b95b4258ef Another PyPI test release 2020-09-16 21:37:57 +01:00
7994d01320 Change deploy script to fail on error 2020-09-16 21:33:39 +01:00
67e2620e7a Change Travis CI to use python 3.5 2020-09-16 21:32:20 +01:00
2 changed files with 6 additions and 6 deletions

View File

@ -27,7 +27,7 @@ os: linux
dist: xenial
language: python
python:
- 3.4 # This is irrelevant, because the virtualenv is not used at all
- 3.5
addons:
apt:
@ -140,7 +140,7 @@ jobs:
- stage: deploy
name: Deploy source distribution and wheel
install: skip
script: python3 setup.py sdist bdist_wheel
after_success: |
python3 -m pip install twine
python3 -m twine upload --repository testpypi --skip-existing dist/*
script:
- python3 setup.py sdist bdist_wheel
- python3 -m pip install twine
- python3 -m twine upload --repository testpypi --skip-existing dist/*

View File

@ -20,6 +20,6 @@
DEV_VERSION = False
VERSION_TUPLE = (5, 2, 0)
VERSION_QUALIFIER = "-dev1"
VERSION_QUALIFIER = "-dev2"
VERSION = '.'.join(map(str,VERSION_TUPLE)) + VERSION_QUALIFIER
major_version = "%s.%s" % (VERSION_TUPLE[0], VERSION_TUPLE[1])