Skip to content

Commit

Permalink
Update project dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
spyker77 committed Dec 6, 2023
1 parent 2a4ce8b commit 6abf830
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:

- name: Install Poetry
run: |
type poetry || curl -sSL https://install.python-poetry.org | python3 - --version 1.7.0
type poetry || curl -sSL https://install.python-poetry.org | python3 - --version 1.7.1
echo "$HOME/.local/bin" >> $GITHUB_PATH
- name: Install Python dependencies
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ RUN apt-get update && \
COPY pyproject.toml poetry.lock ./

RUN pip install --upgrade pip && \
curl -sSL https://install.python-poetry.org | python3 - --version 1.7.0 && \
curl -sSL https://install.python-poetry.org | python3 - --version 1.7.1 && \
export PATH="/root/.local/bin:$PATH" && \
poetry config virtualenvs.create false && \
poetry install --with dev && \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.prod
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ RUN apt-get update && \
COPY pyproject.toml poetry.lock ./

RUN pip install --upgrade pip && \
curl -sSL https://install.python-poetry.org | python3 - --version 1.7.0 && \
curl -sSL https://install.python-poetry.org | python3 - --version 1.7.1 && \
export PATH="/root/.local/bin:$PATH" && \
poetry config virtualenvs.create false && \
poetry install --without dev && \
Expand Down
2 changes: 1 addition & 1 deletion core/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@
},
]

FORM_RENDERER = "django.forms.renderers.Jinja2DivFormRenderer"
FORM_RENDERER = "django.forms.renderers.Jinja2"

WSGI_APPLICATION = "core.wsgi.application"

Expand Down
8 changes: 4 additions & 4 deletions poetry.lock

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

26 changes: 13 additions & 13 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,18 +41,18 @@ version = "3.0.0"

[tool.poetry.dependencies]
Django = "^5.0"
Faker = "^19.13.0"
Faker = "^20.1.0"
Jinja2 = "^3.1.2"
boto3 = "^1.28.78"
celery = { extras = ["pytest"], version = "^5.3.4" }
boto3 = "^1.33.8"
celery = { extras = ["pytest"], version = "^5.3.6" }
django-csp = "^3.7"
django-debug-toolbar = "^4.2.0"
django-linear-migrations = "^2.12.0"
django-otp = "^1.2.4"
django-otp = "^1.3.0"
django-permissions-policy = "^4.18.0"
django-storages = "^1.14.2"
djangorestframework = "^3.14.0"
djangorestframework-simplejwt = "^5.3.0"
djangorestframework-simplejwt = "^5.3.1"
drf-spectacular = "^0.26.5"
flashtext = "^2.7"
gunicorn = "^21.2.0"
Expand All @@ -63,23 +63,23 @@ python-decouple = "^3.8"
qrcode = "^7.4.2"
redis = { extras = ["hiredis"], version = "^5.0.1" }
beautifulsoup4 = { extras = ["lxml"], version = "^4.12.2" }
playwright = "^1.39.0"
sentry-sdk = "^1.34.0"
playwright = "^1.40.0"
sentry-sdk = "^1.38.0"
uvicorn = { extras = ["standard"], version = "^0.23.2" }
psycopg = { extras = ["binary", "pool", "c"], version = "^3.1.12" }
psycopg = { extras = ["binary", "pool", "c"], version = "^3.1.14" }
tenacity = "^8.2.3"

[tool.poetry.group.dev.dependencies]
pre-commit = "^3.5.0"
black = "^23.10.1"
black = "^23.11.0"
isort = "^5.12.0"
ruff = "^0.1.4"
ipython = "^8.17.2"
ruff = "^0.1.7"
ipython = "^8.18.1"
pytest = "^7.4.3"
pytest-cov = "^4.1.0"
pytest-django = "^4.6.0"
pytest-django = "^4.7.0"
pytest-randomly = "^3.15.0"
pytest-xdist = { extras = ["psutil"], version = "^3.3.1" }
pytest-xdist = { extras = ["psutil"], version = "^3.5.0" }

[build-system]
build-backend = "poetry.core.masonry.api"
Expand Down

0 comments on commit 6abf830

Please sign in to comment.