Skip to content

Commit

Permalink
Bump version to 4.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dvingerh committed Jun 10, 2022
1 parent a339605 commit fdae942
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Active development for this script has ended. Issues will no longer be looked in


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


Expand Down
2 changes: 1 addition & 1 deletion pyinstalive/download.py
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ def update_stream_data(self, from_thread=False):
if globals.config.download_comments:
globals.comments.retrieve_comments()
helpers.write_data_json()
if from_thread and len(stream_heartbeat.get("cobroadcasters")) > 0:
if from_thread and len(stream_heartbeat.get("cobroadcasters", [])) > 0:
self.get_guest_status()
if not from_thread or (last_stream_status != stream_status):
if from_thread:
Expand Down
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@

__author__ = 'dvingerh'
__email__ = '[email protected]'
__version__ = '3.3.0'
__version__ = '4.0.0'

_api_extensions_version = '0.3.9'

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

Expand All @@ -21,7 +20,6 @@
]
},
install_requires=[
'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},
'argparse',
'configparser'
],
Expand Down

0 comments on commit fdae942

Please sign in to comment.