Merge pull request #114 from marzzzello/patch-1

This commit is contained in:
Vikash Kothary 2021-12-13 19:00:31 +00:00 committed by GitHub
commit 07532927e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 4 deletions

6
scripts/lock.sh Normal file → Executable file
View File

@ -2,12 +2,10 @@
# file: lock.sh
# description: Lock dependencies and export requirements.
echo "# THE FILE WAS GENERATED BY POETRY, DO NOT EDIT!\n\n" > src/requirements.txt
echo "# THE FILE WAS GENERATED BY POETRY, DO NOT EDIT!\n\n" > src/requirements-dev.txt
echo -e "# THE FILE WAS GENERATED BY POETRY, DO NOT EDIT!\n\n" > src/requirements.txt
echo -e "# THE FILE WAS GENERATED BY POETRY, DO NOT EDIT!\n\n" > src/requirements-dev.txt
poetry lock
poetry export --without-hashes -f requirements.txt >> src/requirements.txt
poetry export --dev --without-hashes -f requirements.txt >> src/requirements-dev.txt
echo "-e src/." >> src/requirements-dev.txt

0
scripts/print-env.sh Normal file → Executable file
View File