-
Notifications
You must be signed in to change notification settings - Fork 288
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix pip cache, pip-compile lock reqs
Signed-off-by: Jack Luar <[email protected]>
- Loading branch information
Showing
5 changed files
with
463 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,3 +10,4 @@ __pycache__/ | |
# Autotuner env | ||
autotuner_env | ||
.env | ||
.venv |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
clearcache: | ||
@echo "Cleaning python cache" | ||
@find . -type d -name __pycache__ -exec rm -r {} \+ | ||
|
||
init: | ||
@echo "Installing python environment" | ||
@./installer.sh | ||
|
||
reqs: | ||
@echo "Compiling requirements" | ||
@rm -f requirements.txt | ||
@.venv/bin/pip-compile --output-file=requirements.txt requirements.in | ||
|
||
test: | ||
@echo "Running tests" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
ray[default,tune]==2.9.3 | ||
ax-platform>=0.3.3,<=0.3.7 | ||
hyperopt==0.2.7 | ||
optuna==3.6.0 | ||
pandas>=2.0,<=2.2.1 | ||
bayesian-optimization==1.4.0 | ||
colorama==0.4.6 | ||
tensorboard>=2.14.0,<=2.16.2 | ||
protobuf==3.20.3 | ||
SQLAlchemy==1.4.17 | ||
urllib3<=1.26.15 | ||
pip-tools==7.4.1 |
Oops, something went wrong.