mirror of https://github.com/zulip/zulip.git
requirements: Add jsx-lexer for syntax highlighting React code.
This commit is contained in:
parent
93b09d44d6
commit
46a4252139
|
@ -15,6 +15,7 @@ Jinja2
|
|||
Markdown
|
||||
Pygments
|
||||
hyperlink
|
||||
jsx-lexer
|
||||
|
||||
# Needed for manage.py
|
||||
# Upgrade blocked because ipython dropped Python 3.5 support.
|
||||
|
|
|
@ -448,6 +448,10 @@ jsonschema==3.2.0 \
|
|||
--hash=sha256:4e5b3cf8216f577bee9ce139cbe72eca3ea4f292ec60928ff24758ce626cd163 \
|
||||
--hash=sha256:c8a85b28d377cc7737e46e2d9f2b4f44ee3c0e1deac6bf46ddefc7187d30797a \
|
||||
# via aws-sam-translator, cfn-lint
|
||||
jsx-lexer==0.0.8 \
|
||||
--hash=sha256:1cb35102b78525aa3f587dc327f3208c0e1c76d5cdea64d4f9c3ced05d10c017 \
|
||||
--hash=sha256:b879c7fafe974440a1dd9f9544dfb8629fa22078ada7f769c8fbb06149eac5d1 \
|
||||
# via -r requirements/common.in
|
||||
libthumbor==2.0.1 \
|
||||
--hash=sha256:3c4e1a59c019d22f868d225315c06f97fad30fb5e78112d6a230b978e7d24e38 \
|
||||
--hash=sha256:ed4fe5f27f8f90e7285b7e6dce99c1b67d43a140bf370e989080b43d80ce25f0 \
|
||||
|
@ -682,7 +686,7 @@ pyflakes==2.2.0 \
|
|||
pygments==2.6.1 \
|
||||
--hash=sha256:647344a061c249a3b74e230c739f434d7ea4d8b1d5f3721bc0f3558049b38f44 \
|
||||
--hash=sha256:ff7a40b4860b727ab48fad6360eb351cc1b33cbf9b15a0f689ca5353e9463324 \
|
||||
# via -r requirements/common.in, ipython, sphinx
|
||||
# via -r requirements/common.in, ipython, jsx-lexer, sphinx
|
||||
pyhamcrest==2.0.2 \
|
||||
--hash=sha256:412e00137858f04bde0729913874a48485665f2d36fe9ee449f26be864af9316 \
|
||||
--hash=sha256:7ead136e03655af85069b6f47b23eb7c3e5c221aa9f022a4fbb499f5b7308f29 \
|
||||
|
|
|
@ -294,6 +294,10 @@ jinja2==2.11.2 \
|
|||
--hash=sha256:89aab215427ef59c34ad58735269eb58b1a5808103067f7bb9d5836c651b3bb0 \
|
||||
--hash=sha256:f0a4641d3cf955324a89c04f3d94663aa4d638abe8f733ecd3582848e1c37035 \
|
||||
# via -r requirements/common.in
|
||||
jsx-lexer==0.0.8 \
|
||||
--hash=sha256:1cb35102b78525aa3f587dc327f3208c0e1c76d5cdea64d4f9c3ced05d10c017 \
|
||||
--hash=sha256:b879c7fafe974440a1dd9f9544dfb8629fa22078ada7f769c8fbb06149eac5d1 \
|
||||
# via -r requirements/common.in
|
||||
libthumbor==2.0.1 \
|
||||
--hash=sha256:3c4e1a59c019d22f868d225315c06f97fad30fb5e78112d6a230b978e7d24e38 \
|
||||
--hash=sha256:ed4fe5f27f8f90e7285b7e6dce99c1b67d43a140bf370e989080b43d80ce25f0 \
|
||||
|
@ -470,7 +474,7 @@ pycparser==2.20 \
|
|||
pygments==2.6.1 \
|
||||
--hash=sha256:647344a061c249a3b74e230c739f434d7ea4d8b1d5f3721bc0f3558049b38f44 \
|
||||
--hash=sha256:ff7a40b4860b727ab48fad6360eb351cc1b33cbf9b15a0f689ca5353e9463324 \
|
||||
# via -r requirements/common.in, ipython
|
||||
# via -r requirements/common.in, ipython, jsx-lexer
|
||||
pyjwt==1.7.1 \
|
||||
--hash=sha256:5c6eca3c2940464d106b99ba83b00c6add741c9becaec087fb7ccdefea71350e \
|
||||
--hash=sha256:8d59a976fb773f3e6a39c85636357c4f0e242707394cadadd9814f5cbaa20e96 \
|
||||
|
|
|
@ -44,4 +44,4 @@ API_FEATURE_LEVEL = 1
|
|||
# historical commits sharing the same major version, in which case a
|
||||
# minor version bump suffices.
|
||||
|
||||
PROVISION_VERSION = '81.0'
|
||||
PROVISION_VERSION = '81.1'
|
||||
|
|
Loading…
Reference in New Issue