Skip to content

Commit da9b562

Browse files
authored
Merge pull request #451 from trowik/update-deps
chore(deps): update dependencies
2 parents bbbe08b + 8890b3b commit da9b562

15 files changed

+37
-47
lines changed

emeis/core/filters.py

-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,6 @@ def _make_ordering_field(self, field, view):
105105
try:
106106
model_field = view.queryset.model._meta.get_field(field_name)
107107
if isinstance(model_field, LocalizedField):
108-
109108
field_col = KeyTransform(lang, field_name)
110109
except FieldDoesNotExist:
111110
# This happens with metainfo__foobar style lookups,

emeis/core/migrations/0001_initial.py

-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414

1515

1616
class Migration(migrations.Migration):
17-
1817
initial = True
1918

2019
dependencies = []

emeis/core/migrations/0003_localized_city.py

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66

77
class Migration(migrations.Migration):
8-
98
dependencies = [
109
("emeis_core", "0002_data_bootstrap"),
1110
]

emeis/core/migrations/0004_use_abstract_base_user.py

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55

66
class Migration(migrations.Migration):
7-
87
dependencies = [
98
("emeis_core", "0003_localized_city"),
109
]

emeis/core/migrations/0005_manager_on_user_model.py

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66

77
class Migration(migrations.Migration):
8-
98
dependencies = [
109
("emeis_core", "0004_use_abstract_base_user"),
1110
]

emeis/core/migrations/0006_rename_field_meta_metainfo.py

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66

77
class Migration(migrations.Migration):
8-
98
dependencies = [
109
("emeis_core", "0005_manager_on_user_model"),
1110
]

emeis/core/migrations/0007_change_JSONField_to_native_django_model_field.py

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55

66
class Migration(migrations.Migration):
7-
87
dependencies = [
98
("emeis_core", "0006_rename_field_meta_metainfo"),
109
]

emeis/core/migrations/0008_scope_is_active.py

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55

66
class Migration(migrations.Migration):
7-
87
dependencies = [
98
("emeis_core", "0007_change_JSONField_to_native_django_model_field"),
109
]

emeis/core/migrations/0009_alter_scope_parent.py

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66

77

88
class Migration(migrations.Migration):
9-
109
dependencies = [
1110
("emeis_core", "0008_scope_is_active"),
1211
]

emeis/core/migrations/0010_scope_full_name.py

-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ def set_full_name(apps, schema_editor):
1515

1616

1717
class Migration(migrations.Migration):
18-
1918
dependencies = [
2019
("emeis_core", "0009_alter_scope_parent"),
2120
]

emeis/core/tests/test_create_scope_command.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99

1010
def _replace_in_text(in_str, **kwargs):
11-
if type(in_str) == dict:
11+
if isinstance(in_str, dict):
1212
return {k: _replace_in_text(v, **kwargs) for k, v in in_str.items()}
1313
for key, val in kwargs.items():
1414
in_str = in_str.replace(f"${key}", str(val))
@@ -168,7 +168,7 @@ def replace_expectations(in_str):
168168
assert new_scope != scope
169169

170170
stdout, stderr = capsys.readouterr()
171-
if type(expect_out) == dict:
171+
if isinstance(expect_out, dict):
172172
assert json.loads(stdout) == expect_out
173173
else:
174174
assert stdout.strip() == expect_out.strip()

emeis/core/tests/test_filters.py

-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
"partial_search", [lambda val: val[:-2], lambda val: val[2:], lambda val: val]
2020
)
2121
def test_search_users(admin_client, acl_factory, user_attribute, partial_search):
22-
2322
users_list = [acl.user for acl in acl_factory.create_batch(5)]
2423

2524
resp = admin_client.get(

emeis/core/tests/test_visibility.py

-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ def test_own_and_admin_visibility(
1919
user,
2020
requesting_user,
2121
):
22-
2322
settings.GENERIC_PERMISSIONS_VISIBILITY_CLASSES = [
2423
"emeis.core.visibilities.OwnAndAdmin"
2524
]

requirements-base.txt

+13-12
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
django~=3.2
2-
django-cors-headers==3.11.0
3-
django-environ~=0.9
4-
django-filter==22.1
2+
django-cors-headers==4.1.0
3+
django-environ~=0.11.2
4+
django-filter==23.5
55
django-generic-api-permissions==0.2.0
6-
django-localized-fields==6.6
7-
django_mptt==0.13.4
8-
django-postgres-extra==2.0.5
9-
djangorestframework==3.13.1
10-
djangorestframework-jsonapi==5.0.0
11-
mozilla-django-oidc==2.0.0
6+
django-localized-fields==6.7
7+
django_mptt==0.15.0
8+
django-postgres-extra==2.0.8
9+
djangorestframework==3.14.0
10+
djangorestframework-jsonapi==6.1.0
11+
mozilla-django-oidc==3.0.0
1212
pyexcel==0.7.0
1313
pyexcel-xlsx==0.6.0
14-
requests==2.27.1
15-
uwsgi==2.0.22
16-
openpyxl==3.0.10
14+
requests==2.31.0
15+
uwsgi==2.0.23
16+
openpyxl==3.0.10 # TODO: dependency of `pyexcel-xlsx` Remove as soon as https://github.com/pyexcel/pyexcel-xlsx/issues/52 is resolved.
17+

requirements-dev.txt

+22-21
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,32 @@
11
-r requirements-base.txt
2-
black==22.6.0
3-
django_extensions==3.1.5
4-
factory-boy==3.2.1
5-
flake8==5.0.4
2+
black==23.12.1
3+
django_extensions==3.2.3
4+
factory-boy==3.3.0
5+
flake8==6.1.0
66
flake8-blind-except==0.2.1
7-
flake8-bugbear==22.6.22
7+
flake8-bugbear==23.12.2
88
flake8-debugger~=4.1
9-
flake8-docstrings==1.6.0
10-
flake8-isort==4.2.0
9+
flake8-docstrings==1.7.0
10+
flake8-isort==6.1.1
1111
flake8-string-format==0.3.0
1212
flake8-tuple==0.4.1
13-
gitlint==0.17.0
14-
hypothesis==6.48.2
15-
ipython==8.2.0
16-
isort==5.10.1
13+
gitlint==0.19.1
14+
hypothesis==6.92.2
15+
ipython==8.18.1
16+
isort==5.13.2
1717
pdbpp==0.10.3
1818
pre_commit~=2.20
19-
psycopg2-binary==2.9.3
20-
pytest==7.1.3
21-
pytest-cov==3.0.0
22-
pytest-django==4.5.2
23-
pytest-env==0.6.2
19+
psycopg2-binary==2.9.9
20+
pytest==7.4.3
21+
pytest-cov==4.1.0
22+
pytest-django==4.7.0
23+
pytest-env==1.1.3
24+
# pytest-factoryboy needs to stay at 2.1.0 because of wrong interpretation of parameters with "__"
2425
pytest-factoryboy==2.1.0
2526
pytest-freezegun==0.4.2
26-
pytest-mock==3.7.0
27-
pytest-randomly==3.11.0
28-
python-semantic-release==7.31.4
29-
requests-mock==1.10.0
27+
pytest-mock==3.12.0
28+
pytest-randomly==3.15.0
29+
python-semantic-release==8.7.0
30+
requests-mock==1.11.0
3031
snapshottest==0.6.0
31-
werkzeug==2.2.3
32+
werkzeug==3.0.1

0 commit comments

Comments
 (0)