diff --git a/.github/workflows/Pipfile b/.github/workflows/Pipfile index 209ccf1..f5d05e5 100644 --- a/.github/workflows/Pipfile +++ b/.github/workflows/Pipfile @@ -5,6 +5,9 @@ name = "pypi" [packages] gitcommitlogger = "*" +requests = "*" +pytz = "*" +python-dateutil = "*" [dev-packages] diff --git a/.github/workflows/Pipfile.lock b/.github/workflows/Pipfile.lock index 59a5bc0..914a503 100644 --- a/.github/workflows/Pipfile.lock +++ b/.github/workflows/Pipfile.lock @@ -18,12 +18,12 @@ "default": { "gitcommitlogger": { "hashes": [ - "sha256:c0986b168f23935037d1ed5a98fd3049e4e610563a3fcbfad44d6a726e35c3da", - "sha256:c2cdb8977dc5367bc267a5b1ff51440d18679326415b4b33682aaf2546d6da0d" + "sha256:3badf5db541d81cc3473882d9d255dabc66cd413e780ccb4fe6b320afddedcd0", + "sha256:7bafd58d46441b8c01b0f5706e7242df0ff841b3f87a7f621979577758546869" ], "index": "pypi", "markers": "python_version >= '3.7'", - "version": "==1.2.4" + "version": "==1.2.5" } }, "develop": {} diff --git a/.github/workflows/requirements.txt b/.github/workflows/requirements.txt new file mode 100644 index 0000000..4067ea1 --- /dev/null +++ b/.github/workflows/requirements.txt @@ -0,0 +1,4 @@ +-i https://pypi.org/simple +gitcommitlogger==1.2.4; python_version >= '3.7' +python-dateutil==2.9.0.post0; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3' +six==1.16.0; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'