Compare commits
3 Commits
v5.2.0-dev
...
v5.2.0-dev
Author | SHA1 | Date | |
---|---|---|---|
b95b4258ef | |||
7994d01320 | |||
67e2620e7a |
10
.travis.yml
10
.travis.yml
@ -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/*
|
||||||
|
@ -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])
|
||||||
|
Reference in New Issue
Block a user