Skip to content

Commit c528586

Browse files
committed
Release 0.7.1 with bugfix
1 parent 67f4c4e commit c528586

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

CHANGELOG.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
33
## Master
44

55

6+
## Version 0.7.1 - 2020-12-04
7+
8+
- Fixed 0.7.0 release to include submodules
9+
10+
611
## Version 0.7.0 - 2020-12-04
712

813
- Moved test requirements to setup.py
@@ -16,7 +21,6 @@
1621
- Replaced Travis CI with GitHub Actions
1722

1823

19-
2024
## Version 0.6.0 - 2018-09-10
2125

2226
- Added default request timeout to all requests for API v5

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -73,19 +73,19 @@ def run_tests(self):
7373
author="Tomaz Sifrer",
7474
author_email="[email protected]",
7575
url="https://github.com/tsifrer/python-twitch-client",
76-
packages=["twitch"],
76+
packages=setuptools.find_packages(include=["twitch", "twitch.*"]),
7777
cmdclass=cmdclass,
7878
install_requires=requires,
7979
tests_require=test_requirements,
8080
extras_require=extras_require,
81+
python_requires=">=3.6, <4",
8182
license="MIT",
8283
zip_safe=False,
8384
classifiers=[
8485
"Intended Audience :: Developers",
8586
"License :: OSI Approved :: MIT License",
8687
"Natural Language :: English",
8788
"Programming Language :: Python :: 3",
88-
"Programming Language :: Python :: 3.5",
8989
"Programming Language :: Python :: 3.6",
9090
"Programming Language :: Python :: 3.7",
9191
"Programming Language :: Python :: 3.8",

twitch/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
from .client import TwitchClient # noqa
22
from .helix.api import TwitchHelix # noqa
33

4-
__version__ = "0.7.0"
4+
__version__ = "0.7.1"

0 commit comments

Comments
 (0)