Skip to content

Commit

Permalink
server/Makefile: Hide nonsense-requirement generated by Ubuntu
Browse files Browse the repository at this point in the history
"pkg-resources==0.0.0" is nonsense, generated by pip freezing on an Ubunu distro

pypa/pip#4022
  • Loading branch information
lentinj committed Nov 16, 2018
1 parent bc2bf37 commit 58d9252
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion server/Makefile
Expand Up @@ -14,7 +14,7 @@ lib/.requirements: requirements.txt requirements-to-freeze.txt setup.py bin/pip
# Make sure any new requirements are available
./bin/pip install -r requirements-to-freeze.txt
# Freeze the output at current state
./bin/pip freeze | grep -v egg=$(EGG_NAME) > requirements.txt
./bin/pip freeze | grep -v egg=$(EGG_NAME) | grep -v 'pkg-resources==0.0.0' > requirements.txt
touch lib/.requirements

compile: lib/.requirements appconfig.py deploy/deploy.sh
Expand Down
1 change: 0 additions & 1 deletion server/requirements.txt
Expand Up @@ -23,7 +23,6 @@ packaging==18.0
pandas==0.23.4
pathlib2==2.3.2
pg8000==1.12.3
pkg-resources==0.0.0
pluggy==0.7.1
psycopg2==2.7.5
psycopg2-binary==2.7.5
Expand Down

0 comments on commit 58d9252

Please sign in to comment.