From 714b9a46f6ad1392bef42df13e077e3ebd158f78 Mon Sep 17 00:00:00 2001 From: Paul Vincent Craven Date: Wed, 23 Mar 2016 14:28:14 -0500 Subject: [PATCH] Update version number, and don't have travis ci upload the wheel since appveyor does. --- .travis.yml | 10 +++++----- arcade/version.py | 2 +- doc/source/conf.py | 2 +- setup.py | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.travis.yml b/.travis.yml index 30f6448e9..94788a23c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -21,11 +21,11 @@ script: - sphinx-build -b html doc/source doc/build/html - coverage run --source=arcade setup.py test -deploy: - provider: pypi - user: $USERNAME - password: $PASSWORD - distributions: "bdist_wheel" +# deploy: +# provider: pypi +# user: $USERNAME +# password: $PASSWORD +# distributions: "bdist_wheel" after_success: - coveralls diff --git a/arcade/version.py b/arcade/version.py index 05c32008a..02db6def0 100644 --- a/arcade/version.py +++ b/arcade/version.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -BUILD = 18 +BUILD = 19 VERSION = "0.0.6" RELEASE = VERSION + "a" + str(BUILD) diff --git a/doc/source/conf.py b/doc/source/conf.py index 3180d9dde..b33f3c78a 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -BUILD = 18 +BUILD = 19 VERSION = "0.0.6" RELEASE = VERSION + "a" + str(BUILD) diff --git a/setup.py b/setup.py index 42b76f496..63384b7d4 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -BUILD = 18 +BUILD = 19 VERSION = "0.0.6" RELEASE = VERSION + "a" + str(BUILD)