Skip to content

Commit

Permalink
requirements: Upgrade zulip from 0.6.1 to 0.6.2 for Python 3.8 bugfix.
Browse files Browse the repository at this point in the history
The zulip package containing the Zulip Python API fails under Python 3.8
prior to version 0.6.2, which in turn prevents zulip-term from running
under that python version unless we depend on this updated dependency.
  • Loading branch information
neiljp committed Dec 15, 2019
1 parent ce40b77 commit c0fe147
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ name = "pypi"

[packages]
urwid = "==2.0.1"
zulip = "==0.6.1"
zulip = "==0.6.2"
emoji = "==0.5.0"
urwid-readline = "==0.10"
beautifulsoup4 = "==4.6.0"
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
urwid==2.0.1
zulip==0.6.1
zulip==0.6.2
pytest==3.10.1
pytest-cov==2.5.1
pytest-pep8==1.0.6
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def long_description():
tests_require=testing_deps,
install_requires=[
'urwid==2.0.1',
'zulip==0.6.1',
'zulip==0.6.2',
'emoji==0.5.0',
'urwid_readline==0.10',
'beautifulsoup4==4.6.0',
Expand Down

0 comments on commit c0fe147

Please sign in to comment.