Skip to content

Commit

Permalink
build: Remove pycrypto system lib deletion hack (#516)
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 21, 2023
1 parent 7a64ba9 commit 51d6e02
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 @@ -31,13 +31,10 @@ clean: ## delete generated byte code and coverage reports
rm -rf assets
rm -rf pii_report

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

piptools: ## install pinned version of pip-compile and pip-sync
pip install -r requirements/pip-tools.txt

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

ci_requirements: piptools validation_requirements ## sync to requirements needed for CI checks

Expand Down

0 comments on commit 51d6e02

Please sign in to comment.