Skip to content

Commit

Permalink
build: Remove pycrypto system lib deletion hack (#162)
Browse files Browse the repository at this point in the history
It's not clear what this was for, but it's probably not needed and doesn't
seem like it would work anyhow. (And it's making `make requirements` fail.)

Part of edx/edx-arch-experiments#391
  • Loading branch information
timmc-edx authored Aug 18, 2023
1 parent 066a5d7 commit a0904c7
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,7 @@ piptools: ## install pinned version of pip-compile and pip-sync
pip install -r requirements/pip.txt
pip install -r requirements/pip-tools.txt

clean_pycrypto: ## temporary (?) hack to deal with the pycrypto dep that's installed via setup-tools
ls -d /usr/lib/python3/dist-packages/* | grep 'pycrypto\|pygobject\|pyxdg' | xargs rm -f

requirements: clean_pycrypto piptools dev_requirements ## sync to default requirements
requirements: piptools dev_requirements ## sync to default requirements

test_requirements:
pip-sync -q requirements/test.txt
Expand Down

0 comments on commit a0904c7

Please sign in to comment.