File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11import random
22import string
33import os
4+ import multiprocessing
45from django .core import signals
56from api .settings .celery import app
67from api .settings .production import DATABASES
78from api .settings .production import * # noqa
89
10+ # Fix Django test error.
11+ # https://github.com/django/django/blob/main/django/test/runner.py#L455
12+ # This code was removed in Django > 5.2, so it is safe to remove this when we upgrade.
13+ multiprocessing .set_start_method ('fork' )
914# Monkey patch celery
1015app .conf .update (task_always_eager = True )
1116signals .request_started .send = lambda sender , ** named : []
Original file line number Diff line number Diff line change 11# Drycc controller requirements
2- inotify == 0.2.10
2+ inotify == 0.2.12
33backoff == 2.2.1
44django == 5.2.8
55channels == 4.3.1
6- aiohttp == 3.12.15
7- django-cors-headers == 4.8 .0
8- django-guardian == 3.1.3
6+ aiohttp == 3.13.2
7+ django-cors-headers == 4.9 .0
8+ django-guardian == 3.2.0
99djangorestframework == 3.16.1
1010docker == 7.1.0
1111gunicorn == 23.0.0
12- uvicorn [standard ]== 0.35 .0
13- asgiref == 3.9.1
14- idna == 3.10
12+ uvicorn [standard ]== 0.38 .0
13+ asgiref == 3.10.0
14+ idna == 3.11
1515jsonschema == 4.25.1
1616morph == 0.1.5
1717packaging == 25.0
1818pyasn1 == 0.6.1
19- psycopg [binary ]== 3.2.10
20- pyOpenSSL == 25.1 .0
19+ psycopg [binary ]== 3.2.12
20+ pyOpenSSL == 25.3 .0
2121ndg-httpsclient == 0.5.1
2222pytz == 2025.2
2323requests == 2.32.5
2424requests-toolbelt == 1.0.0
2525celery [redis ]== 5.5.3
26- hiredis == 3.2.1
26+ hiredis == 3.3.0
2727dj-database-url == 3.0.1
2828social-auth-app-django == 5.6.0
29- kubernetes == 33 .1.0
29+ kubernetes == 34 .1.0
You can’t perform that action at this time.
0 commit comments