Skip to content

Commit f0a1ba0

Browse files
authored
Update backend deps 20250604 (#2367)
* Update backend deps 20250604 * Fix tests
1 parent 579bc0b commit f0a1ba0

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
lines changed

ESSArch_Core/cli/tests/test_commands/test_settings.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def test_generate_new_file(self):
1212
path = 'local_test_settings.py'
1313

1414
with runner.isolated_filesystem():
15-
result = runner.invoke(generate, ['-p', path])
15+
result = runner.invoke(generate, ['-p', path, '-q'])
1616

1717
self.assertTrue(os.path.isfile(path))
1818
self.assertEqual(result.exit_code, 0)
@@ -25,7 +25,7 @@ def test_generate_existing_file_overwrite(self):
2525
with open(path, 'w') as f:
2626
f.write('foo')
2727

28-
result = runner.invoke(generate, ['-p', path, '--overwrite'])
28+
result = runner.invoke(generate, ['-p', path, '--overwrite', '-q'])
2929

3030
self.assertTrue(os.path.isfile(path))
3131
self.assertEqual(result.exit_code, 0)
@@ -39,7 +39,7 @@ def test_generate_existing_file_no_overwrite(self):
3939
with open(path, 'w') as f:
4040
f.write('foo')
4141

42-
result = runner.invoke(generate, ['-p', path, '--no-overwrite'])
42+
result = runner.invoke(generate, ['-p', path, '--no-overwrite', '-q'])
4343

4444
self.assertTrue(os.path.isfile(path))
4545
self.assertEqual(result.exit_code, 0)

requirements/base.txt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
asgiref==3.8.1
2-
boto3==1.38.13
3-
celery[tblib]==5.5.2
2+
boto3==1.38.29
3+
celery[tblib]==5.5.3
44
cffi==1.17.1
55
channels==4.2.2
66
channels-redis==4.2.1
77
chardet==5.1.0
8-
click==8.2.0
9-
cryptography==44.0.3
10-
daphne==4.1.2
8+
click==8.2.1
9+
cryptography==45.0.3
10+
daphne==4.2.0
1111
dj-rest-auth[with-social]==7.0.0
1212
django==5.0.14
1313
django-allauth==0.61.1
@@ -27,7 +27,7 @@ django-relativity==0.2.6
2727
djangorestframework==3.16.0
2828
django-json-widget==1.1.1
2929
django-proxy==1.2.2
30-
django-rest-knox==4.2.0
30+
django-rest-knox==5.0.2
3131
distro==1.9.0
3232
docker==7.1.0
3333
drf-dynamic-fields==0.4.0
@@ -46,7 +46,7 @@ opf-fido==1.6.1
4646
pyfakefs==5.8.0
4747
python-dateutil==2.8.2
4848
pywin32==310 ; platform_system=='Windows'
49-
redis==6.0.0
49+
redis==6.2.0
5050
regex==2024.11.6
5151
requests==2.32.3
5252
requests-toolbelt==1.0.0

requirements/dev.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
pywatchman==2.0.0
1+
pywatchman==3.0.0
22
watchdog==6.0.0
33
django-sslserver==0.22
44
sentry-sdk==2.14.0
55
esbonio==0.16.5
66
django-extensions==3.2.3
77
Werkzeug==3.0.4
8-
pyOpenSSL==24.3.0
8+
pyOpenSSL==25.1.0

requirements/optional.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ django-axes==6.5.2
44
pysaml2==7.5.0
55
djangosaml2==1.10.1
66
unoconv==0.9.0
7-
comtypes==1.4.10 ; platform_system=='Windows'
7+
comtypes==1.4.11 ; platform_system=='Windows'
88
wfastcgi==3.0.0
99
mod-wsgi==5.0.0
1010
mssql-django==1.5

requirements/tests.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
coverage==7.8.0
1+
coverage==7.8.2
22
django-test-without-migrations==0.6
33
selenium==4.25.0

0 commit comments

Comments
 (0)