From 8daeb79b0b9616c86c59044b16a0bea4e73d3592 Mon Sep 17 00:00:00 2001 From: Jacob Nesbitt Date: Thu, 11 Jul 2024 15:42:27 -0400 Subject: [PATCH 1/2] Pin dandischema to 0.10.1 (schema version 0.6.7) --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 15738bcab..ba8aafa90 100644 --- a/setup.py +++ b/setup.py @@ -40,7 +40,8 @@ include_package_data=True, install_requires=[ 'celery', - 'dandischema~=0.10.1', + # Pin dandischema to exact version to make explicit which schema version is being used + 'dandischema==0.10.1', # schema version 0.6.7 'django~=4.1.0', 'django-admin-display', # Require 0.58.0 as it is the first version to support postgres' native From 524c835a82ffea9c23a90b128f04c42f9580480e Mon Sep 17 00:00:00 2001 From: Jacob Nesbitt Date: Thu, 11 Jul 2024 15:42:57 -0400 Subject: [PATCH 2/2] Pin django-storages to 1.14.3 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index ba8aafa90..4a988ff8d 100644 --- a/setup.py +++ b/setup.py @@ -68,7 +68,7 @@ # Production-only 'django-composed-configuration[prod]>=0.23.0', 'django-s3-file-field[s3]>=1.0.0', - 'django-storages[s3]>=1.14.3', + 'django-storages[s3]==1.14.3', 'gunicorn', # Development-only, but required 'django-minio-storage',