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

View File

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