Skip to content

Commit

Permalink
Update dependencies in poetry.lock and requirements.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
QA2A committed Oct 23, 2024
1 parent 694f245 commit 384ccd2
Show file tree
Hide file tree
Showing 4 changed files with 60 additions and 6 deletions.
55 changes: 50 additions & 5 deletions poetry.lock

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

1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ openai = "^0.27.8"
html2text = "^2020.1.16"
django-simple-captcha = "^0.5.20"
djlint = "^1.34.0"
python-dotenv = "^1.0.1"

[tool.poetry.dev-dependencies]

Expand Down
5 changes: 4 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
aiohttp==3.9.1 ; python_full_version >= "3.10.5" and python_full_version < "4.0.0"
aiosignal==1.3.1 ; python_full_version >= "3.10.5" and python_full_version < "4.0.0"
asgiref==3.8.1 ; python_full_version >= "3.10.5" and python_full_version < "4.0.0"
async-timeout==4.0.3 ; python_full_version >= "3.10.5" and python_version < "3.11"
attrs==23.1.0 ; python_full_version >= "3.10.5" and python_full_version < "4.0.0"
beautifulsoup4==4.12.2 ; python_full_version >= "3.10.5" and python_full_version < "4.0.0"
brotli==1.1.0 ; python_full_version >= "3.10.5" and python_full_version < "4.0.0"
Expand All @@ -24,6 +25,7 @@ djangorestframework==3.14.0 ; python_full_version >= "3.10.5" and python_full_ve
djlint==1.34.0 ; python_full_version >= "3.10.5" and python_full_version < "4.0.0"
docx2txt==0.8 ; python_full_version >= "3.10.5" and python_full_version < "4.0.0"
editorconfig==0.12.3 ; python_full_version >= "3.10.5" and python_full_version < "4.0.0"
exceptiongroup==1.2.2 ; python_full_version >= "3.10.5" and python_version < "3.11"
frozenlist==1.4.0 ; python_full_version >= "3.10.5" and python_full_version < "4.0.0"
gunicorn==20.1.0 ; python_full_version >= "3.10.5" and python_full_version < "4.0.0"
h11==0.14.0 ; python_full_version >= "3.10.5" and python_full_version < "4.0.0"
Expand All @@ -49,7 +51,7 @@ pycparser==2.21 ; python_full_version >= "3.10.5" and python_full_version < "4.0
pyjwt[crypto]==2.8.0 ; python_full_version >= "3.10.5" and python_full_version < "4.0.0"
pypdf2==3.0.1 ; python_full_version >= "3.10.5" and python_full_version < "4.0.0"
pysocks==1.7.1 ; python_full_version >= "3.10.5" and python_full_version < "4.0.0"
python-dotenv==1.0.0 ; python_full_version >= "3.10.5" and python_full_version < "4.0.0"
python-dotenv==1.0.1 ; python_full_version >= "3.10.5" and python_full_version < "4.0.0"
python-http-client==3.3.7 ; python_full_version >= "3.10.5" and python_full_version < "4.0.0"
python3-openid==3.2.0 ; python_full_version >= "3.10.5" and python_full_version < "4.0.0"
pytz==2023.3.post1 ; python_full_version >= "3.10.5" and python_full_version < "4.0.0"
Expand All @@ -67,6 +69,7 @@ sortedcontainers==2.4.0 ; python_full_version >= "3.10.5" and python_full_versio
soupsieve==2.5 ; python_full_version >= "3.10.5" and python_full_version < "4.0.0"
sqlparse==0.4.4 ; python_full_version >= "3.10.5" and python_full_version < "4.0.0"
starkbank-ecdsa==2.2.0 ; python_full_version >= "3.10.5" and python_full_version < "4.0.0"
tomli==2.0.2 ; python_full_version >= "3.10.5" and python_version < "3.11"
tqdm==4.66.1 ; python_full_version >= "3.10.5" and python_full_version < "4.0.0"
trio-websocket==0.11.1 ; python_full_version >= "3.10.5" and python_full_version < "4.0.0"
trio==0.23.1 ; python_full_version >= "3.10.5" and python_full_version < "4.0.0"
Expand Down
5 changes: 5 additions & 0 deletions website/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@

TESTING = "test" in sys.argv

from dotenv import load_dotenv

# Load environment variables from .env file
load_dotenv()

from sentry_sdk.integrations.django import DjangoIntegration

if os.environ.get("SENTRY_DSN"):
Expand Down

0 comments on commit 384ccd2

Please sign in to comment.