Skip to content

Commit

Permalink
final cleanup for v1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
iTaybb committed Feb 23, 2019
1 parent 98638c8 commit 4522d76
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 18 deletions.
30 changes: 16 additions & 14 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
2 changes: 1 addition & 1 deletion ChangeLog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion pySmartDL/pySmartDL.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import pySmartDL

extra = {}
release_posttag = ".b1"
release_posttag = ""

setup(
name='pySmartDL',
Expand Down

0 comments on commit 4522d76

Please sign in to comment.