diff --git a/requirements/common.in b/requirements/common.in index de910b739d..90f0100c6b 100644 --- a/requirements/common.in +++ b/requirements/common.in @@ -54,9 +54,6 @@ git+https://github.com/zulip/talon.git@7d8bdc4dbcfcc5a73298747293b99fe53da55315# # Needed for hipchat import hypchat==0.21 -# For doing highly usable Python profiling -git+https://github.com/zulip/line_profiler.git#egg=line_profiler==2.1.2.zulip1 - # Needed for inlining the CSS in emails premailer==3.5.0 diff --git a/requirements/dev.in b/requirements/dev.in index 6b6a824744..1a53d0e0fd 100644 --- a/requirements/dev.in +++ b/requirements/dev.in @@ -25,6 +25,10 @@ httpretty==0.9.6 # For sorting imports isort==4.3.21 +# For doing highly usable Python profiling (temporary fork of +# line_profiler: https://github.com/rkern/line_profiler/issues/127) +lp37==2.1.1 + # for pep8 linter pycodestyle==2.5.0 diff --git a/requirements/dev.txt b/requirements/dev.txt index 9bc6dd7870..af1eb1a6e6 100644 --- a/requirements/dev.txt +++ b/requirements/dev.txt @@ -83,7 +83,7 @@ jsonpickle==1.2 # via aws-xray-sdk, python-digitalocean jsonpointer==2.0 # via jsonpatch jsonschema==3.0.1 # via aws-sam-translator, cfn-lint git+https://github.com/zulip/libthumbor.git@60ed2431c07686a12f2770b2d852c5650f3ccfc6#egg=libthumbor==1.3.2zulip -git+https://github.com/zulip/line_profiler.git#egg=line_profiler==2.1.2.zulip1 +lp37==2.1.1 lxml==4.3.4 markdown-include==0.5.1 markdown==3.1.1 diff --git a/requirements/prod.txt b/requirements/prod.txt index 3ca42a3212..b70694f64e 100644 --- a/requirements/prod.txt +++ b/requirements/prod.txt @@ -54,7 +54,6 @@ ipython==6.5.0 jedi==0.14.0 # via ipython jinja2==2.10.1 git+https://github.com/zulip/libthumbor.git@60ed2431c07686a12f2770b2d852c5650f3ccfc6#egg=libthumbor==1.3.2zulip -git+https://github.com/zulip/line_profiler.git#egg=line_profiler==2.1.2.zulip1 lxml==4.3.4 markdown-include==0.5.1 markdown==3.1.1 diff --git a/version.py b/version.py index d5fc9051df..1fa9ef02dd 100644 --- a/version.py +++ b/version.py @@ -26,4 +26,4 @@ LATEST_RELEASE_ANNOUNCEMENT = "https://blog.zulip.org/2019/03/01/zulip-2-0-relea # historical commits sharing the same major version, in which case a # minor version bump suffices. -PROVISION_VERSION = '54.3' +PROVISION_VERSION = '54.4'