Bump version: 9.3.6 → 9.4.0
Browse files- pytube/__init__.py +1 -1
- setup.cfg +4 -3
- setup.py +1 -1
pytube/__init__.py
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
Pytube: a very serious Python library for downloading YouTube Videos.
|
6 |
"""
|
7 |
__title__ = 'pytube'
|
8 |
-
__version__ = '9.
|
9 |
__author__ = 'Nick Ficano'
|
10 |
__license__ = 'MIT License'
|
11 |
__copyright__ = 'Copyright 2019 Nick Ficano'
|
|
|
5 |
Pytube: a very serious Python library for downloading YouTube Videos.
|
6 |
"""
|
7 |
__title__ = 'pytube'
|
8 |
+
__version__ = '9.4.0'
|
9 |
__author__ = 'Nick Ficano'
|
10 |
__license__ = 'MIT License'
|
11 |
__copyright__ = 'Copyright 2019 Nick Ficano'
|
setup.cfg
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
[bumpversion]
|
2 |
commit = True
|
3 |
tag = True
|
4 |
-
current_version = 9.
|
5 |
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+))?
|
6 |
-
serialize =
|
7 |
{major}.{minor}.{patch}
|
8 |
|
9 |
[metadata]
|
@@ -15,8 +15,9 @@ description-file = README.md
|
|
15 |
|
16 |
[coverage:run]
|
17 |
source = pytube
|
18 |
-
omit =
|
19 |
pytube/compat.py
|
20 |
|
21 |
[flake8]
|
22 |
ignore = W605
|
|
|
|
1 |
[bumpversion]
|
2 |
commit = True
|
3 |
tag = True
|
4 |
+
current_version = 9.4.0
|
5 |
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+))?
|
6 |
+
serialize =
|
7 |
{major}.{minor}.{patch}
|
8 |
|
9 |
[metadata]
|
|
|
15 |
|
16 |
[coverage:run]
|
17 |
source = pytube
|
18 |
+
omit =
|
19 |
pytube/compat.py
|
20 |
|
21 |
[flake8]
|
22 |
ignore = W605
|
23 |
+
|
setup.py
CHANGED
@@ -47,7 +47,7 @@ class UploadCommand(Command):
|
|
47 |
|
48 |
setup(
|
49 |
name='pytube',
|
50 |
-
version='9.
|
51 |
author='Nick Ficano',
|
52 |
author_email='nficano@gmail.com',
|
53 |
packages=['pytube', 'pytube.contrib'],
|
|
|
47 |
|
48 |
setup(
|
49 |
name='pytube',
|
50 |
+
version='9.4.0',
|
51 |
author='Nick Ficano',
|
52 |
author_email='nficano@gmail.com',
|
53 |
packages=['pytube', 'pytube.contrib'],
|