mirror of https://github.com/zulip/zulip.git
requirements: Include packages that pip-tools considers unsafe.
It’s unclear why pip-tools considers these packages unsafe, and excluding them from being pinned has resulted in nondeterministic output that makes our test suite unhappy. Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
This commit is contained in:
parent
8b443a25b8
commit
f1b91e577e
|
@ -191,5 +191,5 @@ git+https://github.com/zulip/python-zulip-api.git@804501610b6a205334e71b4e441fca
|
|||
git+https://github.com/zulip/python-zulip-api.git@804501610b6a205334e71b4e441fca60acf650da#egg=zulip_bots==0.6.1+git&subdirectory=zulip_bots
|
||||
|
||||
# The following packages are considered to be unsafe in a requirements file:
|
||||
# pip==19.2.3
|
||||
# setuptools==41.2.0 # via cfn-lint, ipython, jsonschema, markdown, pyhamcrest, sphinx, zope.interface
|
||||
pip==19.1.1
|
||||
setuptools==41.0.1 # via cfn-lint, ipython, jsonschema, markdown, pyhamcrest, sphinx, zope.interface
|
||||
|
|
|
@ -32,4 +32,4 @@ sphinxcontrib-websupport==1.1.2 # via sphinx
|
|||
urllib3==1.25.3 # via requests
|
||||
|
||||
# The following packages are considered to be unsafe in a requirements file:
|
||||
# setuptools==41.2.0 # via sphinx
|
||||
setuptools==41.0.1 # via sphinx
|
||||
|
|
|
@ -122,5 +122,5 @@ git+https://github.com/zulip/python-zulip-api.git@804501610b6a205334e71b4e441fca
|
|||
git+https://github.com/zulip/python-zulip-api.git@804501610b6a205334e71b4e441fca60acf650da#egg=zulip_bots==0.6.1+git&subdirectory=zulip_bots
|
||||
|
||||
# The following packages are considered to be unsafe in a requirements file:
|
||||
# pip==19.2.3
|
||||
# setuptools==41.2.0 # via ipython, markdown
|
||||
pip==19.1.1
|
||||
setuptools==41.0.1 # via ipython, markdown
|
||||
|
|
|
@ -12,7 +12,7 @@ compile_requirements () {
|
|||
output="$2"
|
||||
python_version="$3"
|
||||
|
||||
pip-compile --quiet --no-header --output-file "$output" "$source"
|
||||
pip-compile --quiet --allow-unsafe --no-header --output-file "$output" "$source"
|
||||
|
||||
if [ "$python_version" != "py2" ]; then
|
||||
# Remove an unnecessary future requirement declared by commonmark,
|
||||
|
|
Loading…
Reference in New Issue