Skip to content

Commit

Permalink
server: Don't freeze setuptools/wheel
Browse files Browse the repository at this point in the history
The most appropriate versions will change, and better off using the one
the system python already has.
  • Loading branch information
lentinj committed Jan 21, 2025
1 parent 38dbd84 commit 22e846e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion server/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,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) | grep -v 'pkg-resources==0.0.0' > requirements.txt
./bin/pip freeze | grep -v egg=$(EGG_NAME) | grep -vE '^pkg-resources=|^setuptools=|^wheel=' > requirements.txt
touch lib/.requirements

compile: lib/.requirements appconfig.py
Expand Down
2 changes: 0 additions & 2 deletions server/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,10 @@ python-dateutil==2.9.0.post0
pytz==2024.2
PyYAML==6.0.2
scramp==1.4.5
setuptools==75.6.0
six==1.16.0
testing.common.database==2.0.3
testing.postgresql==1.3.0
tzdata==2024.1
Unidecode==1.3.8
uWSGI==2.0.26
Werkzeug==3.0.4
wheel==0.45.1

0 comments on commit 22e846e

Please sign in to comment.