Chore(deps): Bump all allowed backend packages (#6562)

This commit is contained in:
Trenton H 2024-05-04 13:26:15 -07:00 committed by GitHub
parent b403b9d9d5
commit 5802163a0e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 874 additions and 837 deletions

View File

@ -47,11 +47,11 @@ repos:
exclude: "(^Pipfile\\.lock$)" exclude: "(^Pipfile\\.lock$)"
# Python hooks # Python hooks
- repo: https://github.com/astral-sh/ruff-pre-commit - repo: https://github.com/astral-sh/ruff-pre-commit
rev: 'v0.4.1' rev: 'v0.4.2'
hooks: hooks:
- id: ruff - id: ruff
- repo: https://github.com/psf/black-pre-commit-mirror - repo: https://github.com/psf/black-pre-commit-mirror
rev: 24.4.0 rev: 24.4.2
hooks: hooks:
- id: black - id: black
# Dockerfile hooks # Dockerfile hooks

View File

@ -8,7 +8,7 @@ dateparser = "~=1.2"
# WARNING: django does not use semver. # WARNING: django does not use semver.
# Only patch versions are guaranteed to not introduce breaking changes. # Only patch versions are guaranteed to not introduce breaking changes.
django = "~=4.2.11" django = "~=4.2.11"
django-allauth = "*" django-allauth = {extras = ["socialaccount"], version = "*"}
django-auditlog = "*" django-auditlog = "*"
django-celery-results = "*" django-celery-results = "*"
django-compression-middleware = "*" django-compression-middleware = "*"

1699
Pipfile.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -37,11 +37,11 @@ def worker_int(worker):
id2name = {th.ident: th.name for th in threading.enumerate()} id2name = {th.ident: th.name for th in threading.enumerate()}
code = [] code = []
for threadId, stack in sys._current_frames().items(): for threadId, stack in sys._current_frames().items():
code.append("\n# Thread: %s(%d)" % (id2name.get(threadId, ""), threadId)) code.append(f"\n# Thread: {id2name.get(threadId, '')}({threadId})")
for filename, lineno, name, line in traceback.extract_stack(stack): for filename, lineno, name, line in traceback.extract_stack(stack):
code.append('File: "%s", line %d, in %s' % (filename, lineno, name)) code.append(f'File: "{filename}", line {lineno}, in {name}')
if line: if line:
code.append(" %s" % (line.strip())) code.append(f" {line.strip()}")
worker.log.debug("\n".join(code)) worker.log.debug("\n".join(code))