From 06fb8da4e0209117801070a92a688e7a55cfacb0 Mon Sep 17 00:00:00 2001 From: Dave Bauer <825743+tdxdave@users.noreply.github.com> Date: Sun, 12 Jun 2022 15:40:49 -0400 Subject: [PATCH 1/4] Pin to wagtail 2.16.2 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 0340c18..d3f955a 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ setup_requires=["setuptools_scm"], use_scm_version=True, install_requires=[ - "wagtail>=2.15", + "wagtail==2.16.2", "wagtailcontentstream>=0.4.0", "django-bootstrap4>=2", ], From d2ab3ce34b6174a19657a4b22dfffd9671a0034d Mon Sep 17 00:00:00 2001 From: Dave Bauer <825743+tdxdave@users.noreply.github.com> Date: Sun, 12 Jun 2022 15:52:30 -0400 Subject: [PATCH 2/4] Try another wagtail setting --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index d3f955a..a4d67e9 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ setup_requires=["setuptools_scm"], use_scm_version=True, install_requires=[ - "wagtail==2.16.2", + "wagtail>=2.15,<3.0", "wagtailcontentstream>=0.4.0", "django-bootstrap4>=2", ], From 8f5ddbf8b55ffda29000ea70de802a99d4477d1b Mon Sep 17 00:00:00 2001 From: Dave Bauer <825743+tdxdave@users.noreply.github.com> Date: Sun, 12 Jun 2022 16:05:10 -0400 Subject: [PATCH 3/4] Don't install wagtailcodeblock after 1.25 --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index a4d67e9..d4f7460 100644 --- a/setup.py +++ b/setup.py @@ -20,6 +20,7 @@ install_requires=[ "wagtail>=2.15,<3.0", "wagtailcontentstream>=0.4.0", + "wagtailcodeblock=<1.28.0" "django-bootstrap4>=2", ], classifiers=[ From f681ea16cd19e6b54cfc8df8ee4fa99675d3454b Mon Sep 17 00:00:00 2001 From: Dave Bauer <825743+tdxdave@users.noreply.github.com> Date: Sun, 12 Jun 2022 16:17:55 -0400 Subject: [PATCH 4/4] fix version ref --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index d4f7460..9e7ff36 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ install_requires=[ "wagtail>=2.15,<3.0", "wagtailcontentstream>=0.4.0", - "wagtailcodeblock=<1.28.0" + "wagtailcodeblock<=1.28.0" "django-bootstrap4>=2", ], classifiers=[