Skip to content

Commit

Permalink
Add pytz as a dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
palewire committed Nov 28, 2023
1 parent 5a0a587 commit 5e9fdd6
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docs.yaml
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions Pipfile
Expand Up @@ -15,6 +15,7 @@ myst-parser = "*"

[packages]
requests = "*"
pytz = "*"

[requires]
python_version = "3.11"
10 changes: 9 additions & 1 deletion Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -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",
Expand Down

0 comments on commit 5e9fdd6

Please sign in to comment.