diff --git a/requirements/pip.in b/requirements/pip.in new file mode 100644 index 0000000000..7015e2e2f3 --- /dev/null +++ b/requirements/pip.in @@ -0,0 +1,3 @@ +pip +setuptools +wheel diff --git a/requirements/pip.txt b/requirements/pip.txt index 0678617c8c..e612a9b6ba 100644 --- a/requirements/pip.txt +++ b/requirements/pip.txt @@ -1,4 +1,14 @@ -# Dependencies for setting up pip to install our requirements.txt file. +# +# This file is GENERATED. Don't edit directly. +# +# To update, edit the non-"lock" files in requirements/*.txt, then: +# +# tools/update-locked-requirements +# +# For details, see requirements/README.md . +# +wheel==0.33.4 + +# The following packages are considered to be unsafe in a requirements file: pip==19.2.3 setuptools==41.0.1 -wheel==0.33.4 diff --git a/tools/update-locked-requirements b/tools/update-locked-requirements index 16eb5344df..570417444e 100755 --- a/tools/update-locked-requirements +++ b/tools/update-locked-requirements @@ -60,6 +60,7 @@ if [ $# -gt 0 ]; then done fi +compile_requirements requirements/pip.in "$OUTPUT_BASE_DIR/pip.txt" compile_requirements requirements/prod.in "$OUTPUT_BASE_DIR/prod.txt" compile_requirements requirements/dev.in "$OUTPUT_BASE_DIR/dev.txt" compile_requirements requirements/mypy.in "$OUTPUT_BASE_DIR/mypy.txt"