From 4522d76a7d1dda37dc223cddc78b32ba25cfc249 Mon Sep 17 00:00:00 2001 From: Itay Brandes Date: Sat, 23 Feb 2019 19:21:49 +0200 Subject: [PATCH] final cleanup for v1.3.1 --- .travis.yml | 30 ++++++++++++++++-------------- ChangeLog.txt | 2 +- docs/conf.py | 2 +- pySmartDL/pySmartDL.py | 2 +- setup.py | 2 +- 5 files changed, 20 insertions(+), 18 deletions(-) diff --git a/.travis.yml b/.travis.yml index 01c640b..671e6db 100644 --- a/.travis.yml +++ b/.travis.yml @@ -27,7 +27,7 @@ jobs: - stage: Deploy if: tag =~ -live dist: trusty - python: 3.7 + python: 3.6 skip-cleanup: true install: - pip install -r build_requirements.txt @@ -37,16 +37,18 @@ jobs: - touch _build/html/.nojekyll # for github pages - cd .. # return to root folder deploy: - provider: pages - local-dir: docs/_build/html - target-branch: gh-pages - skip-cleanup: true - github-token: $GITHUB_TOKEN - deploy: - provider: pypi - user: $PYPI_USERNAME - password: $PYPI_PASSWORD - skip_existing: false - distributions: "sdist bdist_wheel" - on: - all_branches: true # actually based on a -live tag + - provider: pages + local-dir: docs/_build/html + target-branch: gh-pages + skip-cleanup: true + github-token: $GITHUB_TOKEN + on: + all_branches: true # actually based on a -live tag + - provider: pypi + user: $PYPI_USERNAME + password: $PYPI_PASSWORD + skip_existing: true + skip-cleanup: true + distributions: "sdist bdist_wheel" + on: + all_branches: true # actually based on a -live tag diff --git a/ChangeLog.txt b/ChangeLog.txt index 59fc328..c3ec339 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -5,7 +5,7 @@ Below you find a list with the added features, changes and fixes for each version. ====================== -(Version 1.3.0 beta; 23/02/19) +(Version 1.3.1 beta; 23/02/19) - NEW: Speed limiting. - NEW: Added support for Python 3.7. - NEW: Dropped support for Python 2 and 3.1, 3.2, 3.3. diff --git a/docs/conf.py b/docs/conf.py index 424b2a9..55d3d86 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -50,7 +50,7 @@ # The short X.Y version. version = '1.3' # The full version, including alpha/beta/rc tags. -release = '1.3.0' +release = '1.3.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pySmartDL/pySmartDL.py b/pySmartDL/pySmartDL.py index 04e8c07..eac1180 100644 --- a/pySmartDL/pySmartDL.py +++ b/pySmartDL/pySmartDL.py @@ -19,7 +19,7 @@ __all__ = ['SmartDL', 'utils'] __version_mjaor__ = 1 __version_minor__ = 3 -__version_micro__ = 0 +__version_micro__ = 1 __version__ = "{}.{}.{}".format(__version_mjaor__, __version_minor__, __version_micro__) class HashFailedException(Exception): diff --git a/setup.py b/setup.py index 8df854b..3b9ec62 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ import pySmartDL extra = {} -release_posttag = ".b1" +release_posttag = "" setup( name='pySmartDL',