Skip to content

Commit

Permalink
Merge pull request #2099 from dandi/upgrade-allauth
Browse files Browse the repository at this point in the history
Bump `django-allauth` to latest version
  • Loading branch information
mvandenburgh authored Dec 9, 2024
2 parents b31a6c6 + ffeffa8 commit fc50f67
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Generated by Django 4.2.17 on 2024-12-09 19:32
from __future__ import annotations

from django.db import migrations, models


class Migration(migrations.Migration):
dependencies = [
('api', '0012_remove_asset_previous'),
]

operations = [
migrations.RemoveConstraint(
model_name='assetpath',
name='consistent-slash',
),
migrations.AddConstraint(
model_name='assetpath',
constraint=models.CheckConstraint(
check=models.Q(
('path__endswith', '/'),
('path__startswith', '/'),
_connector='OR',
_negated=True,
),
name='consistent-slash',
),
),
]
11 changes: 6 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,11 @@
'dandi',
# Pin dandischema to exact version to make explicit which schema version is being used
'dandischema==0.10.2', # schema version 0.6.8
'django~=4.1.0',
'django~=4.2.0',
'django-admin-display',
# Pin to 0.61.1 to test user signup
'django-allauth==0.61.1',
# Pin to version where this bug is fixed
# https://codeberg.org/allauth/django-allauth/issues/4072
'django-allauth>=65.3.0',
'django-click',
'django-configurations[database,email]',
'django-extensions',
Expand All @@ -67,7 +68,7 @@
's3-log-parse',
'zarr-checksum>=0.2.8',
# Production-only
'django-composed-configuration[prod]>=0.23.0',
'django-composed-configuration[prod]>=0.25.0',
'django-s3-file-field[s3]>=1.0.0',
'django-storages[s3]==1.14.3',
'gunicorn',
Expand All @@ -78,7 +79,7 @@
],
extras_require={
'dev': [
'django-composed-configuration[dev]>=0.23.0',
'django-composed-configuration[dev]>=0.25.0',
'django-debug-toolbar',
'django-s3-file-field[minio]',
'ipython',
Expand Down

0 comments on commit fc50f67

Please sign in to comment.