diff --git a/.github/workflows/default.yml b/.github/workflows/default.yml index 3a1097b..3711323 100644 --- a/.github/workflows/default.yml +++ b/.github/workflows/default.yml @@ -42,7 +42,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.7", "3.8", "3.9", "3.10"] + python-version: ["3.8", "3.9"] steps: - uses: actions/checkout@v1 - name: Set up Python ${{ matrix.python-version }} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index ca65d1a..519e6b9 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -3,6 +3,12 @@ Changelog ========= +3.11.4.1 (2024-01-10) +===================== + +* Pinned django-simple-captcha to <=0.5.20 as newer versions need 4.x + + 3.11.4.0 (2023-09-19) ===================== diff --git a/aldryn_django_cms/__init__.py b/aldryn_django_cms/__init__.py index 348afee..87a510f 100644 --- a/aldryn_django_cms/__init__.py +++ b/aldryn_django_cms/__init__.py @@ -1 +1 @@ -__version__ = '3.11.4.0' +__version__ = '3.11.4.1' diff --git a/setup.py b/setup.py index 66f7962..2e6c7c6 100644 --- a/setup.py +++ b/setup.py @@ -26,7 +26,7 @@ # See https://github.com/gregmuellegger/django-sortedm2m/issues/80 'django-sortedm2m>=1.5.0', 'django-robots', - 'django-simple-captcha', + 'django-simple-captcha<=0.5.20', 'lxml', 'YURL', ]