Skip to content

Commit fdae942

Browse files
committed
Bump version to 4.0.0
1 parent a339605 commit fdae942

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Active development for this script has ended. Issues will no longer be looked in
33

44

55
# PyInstaLive
6-
![Version 4.0.0](https://img.shields.io/badge/Version-3.3.0-orange.svg)
6+
![Version 4.0.0](https://img.shields.io/badge/Version-4.0.0-orange.svg)
77
![Python 3.6+](https://img.shields.io/badge/Python-3.6%2B-3776ab.svg)
88

99

pyinstalive/download.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ def update_stream_data(self, from_thread=False):
227227
if globals.config.download_comments:
228228
globals.comments.retrieve_comments()
229229
helpers.write_data_json()
230-
if from_thread and len(stream_heartbeat.get("cobroadcasters")) > 0:
230+
if from_thread and len(stream_heartbeat.get("cobroadcasters", [])) > 0:
231231
self.get_guest_status()
232232
if not from_thread or (last_stream_status != stream_status):
233233
if from_thread:

setup.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,8 @@
22

33
__author__ = 'dvingerh'
44
__email__ = '[email protected]'
5-
__version__ = '3.3.0'
5+
__version__ = '4.0.0'
66

7-
_api_extensions_version = '0.3.9'
87

98
long_description = 'This Python script enables you to download ongoing Instagram livestreams as a video file.'
109

@@ -21,7 +20,6 @@
2120
]
2221
},
2322
install_requires=[
24-
'instagram_private_api_extensions @ https://github.com/ping/instagram_private_api_extensions/archive/%(api)s.tar.gz#egg=instagram_private_api_extensions-%(api)s' % {'api': _api_extensions_version},
2523
'argparse',
2624
'configparser'
2725
],

0 commit comments

Comments
 (0)