From afff3516c42b9427fe28ad06b5a64951b0edf493 Mon Sep 17 00:00:00 2001 From: Xidorn Quan Date: Fri, 1 Jan 2021 19:38:59 +1100 Subject: [PATCH] Comment out the first line of requirements.txt files --- scripts/lock.sh | 4 ++-- src/requirements-dev.txt | 2 +- src/requirements.txt | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/lock.sh b/scripts/lock.sh index f9d9039..01e7efe 100644 --- a/scripts/lock.sh +++ b/scripts/lock.sh @@ -2,8 +2,8 @@ # 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 "# 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 poetry lock poetry export --without-hashes -f requirements.txt >> src/requirements.txt poetry export --dev --without-hashes -f requirements.txt >> src/requirements-dev.txt diff --git a/src/requirements-dev.txt b/src/requirements-dev.txt index 8942b4b..82d2728 100644 --- a/src/requirements-dev.txt +++ b/src/requirements-dev.txt @@ -1,4 +1,4 @@ -THE FILE WAS GENERATED BY POETRY, DO NOT EDIT! +# THE FILE WAS GENERATED BY POETRY, DO NOT EDIT! anki==2.1.37; python_version >= "3.8" diff --git a/src/requirements.txt b/src/requirements.txt index 251170b..cd2c328 100644 --- a/src/requirements.txt +++ b/src/requirements.txt @@ -1,4 +1,4 @@ -THE FILE WAS GENERATED BY POETRY, DO NOT EDIT! +# THE FILE WAS GENERATED BY POETRY, DO NOT EDIT! anki==2.1.37; python_version >= "3.8"