From 5e9fdd657864dd20fe74c4fcbd281ee8cd187aa2 Mon Sep 17 00:00:00 2001 From: palewire Date: Tue, 28 Nov 2023 05:35:53 -0500 Subject: [PATCH] Add pytz as a dependency --- .github/workflows/docs.yaml | 2 +- Pipfile | 1 + Pipfile.lock | 10 +++++++++- setup.py | 2 +- 4 files changed, 12 insertions(+), 3 deletions(-) diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml index 6e87c8e..5d200d6 100644 --- a/.github/workflows/docs.yaml +++ b/.github/workflows/docs.yaml @@ -42,7 +42,7 @@ jobs: with: aws-access-key-id: ${{ secrets.PALEWIRE_DOCS_AWS_ACCESS_KEY_ID }} aws-secret-access-key: ${{ secrets.PALEWIRE_DOCS_AWS_SECRET_ACCESS_KEY }} - aws-region: ${{ secrets.PALEWIRE_DOCS_AWS_REGION }} + aws-region: us-east-1 - id: upload-to-s3 name: Upload documentation to Amazon S3 diff --git a/Pipfile b/Pipfile index d73dc0e..bde1966 100644 --- a/Pipfile +++ b/Pipfile @@ -15,6 +15,7 @@ myst-parser = "*" [packages] requests = "*" +pytz = "*" [requires] python_version = "3.11" diff --git a/Pipfile.lock b/Pipfile.lock index 6f1f122..e45ef35 100644 --- a/Pipfile.lock +++ b/Pipfile.lock @@ -1,7 +1,7 @@ { "_meta": { "hash": { - "sha256": "26de7e262231b6e61c404cc9e3acf1825a365a452862150136a432b972a88728" + "sha256": "1c88247bc94fc3c05ec66ebdd7110cb793defeb62e8d6674b45b40ede5e7da1f" }, "pipfile-spec": 6, "requires": { @@ -128,6 +128,14 @@ "markers": "python_version >= '3.5'", "version": "==3.6" }, + "pytz": { + "hashes": [ + "sha256:7b4fddbeb94a1eba4b557da24f19fdf9db575192544270a9101d8509f9f43d7b", + "sha256:ce42d816b81b68506614c11e8937d3aa9e41007ceb50bfdcb0749b921bf646c7" + ], + "index": "pypi", + "version": "==2023.3.post1" + }, "requests": { "hashes": [ "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f", diff --git a/setup.py b/setup.py index 6aa8bd7..931058c 100644 --- a/setup.py +++ b/setup.py @@ -86,7 +86,7 @@ def run(self): "anss.management.commands", ), cmdclass={"test": TestCommand}, - install_requires=("requests",), + install_requires=("requests", "pytz",), classifiers=[ "Development Status :: 5 - Production/Stable", "Programming Language :: Python",