From 337e20e15cde725dca0f149489498fde3ad0233e Mon Sep 17 00:00:00 2001 From: Petr Olah Date: Wed, 25 Feb 2026 13:41:43 +0100 Subject: [PATCH] Fix Django 5.2.x incompatibilities --- .github/workflows/publish-to-pypi.yml | 4 ++-- setup.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish-to-pypi.yml b/.github/workflows/publish-to-pypi.yml index 19b8b69..9a03f2e 100644 --- a/.github/workflows/publish-to-pypi.yml +++ b/.github/workflows/publish-to-pypi.yml @@ -9,10 +9,10 @@ jobs: steps: - uses: actions/checkout@master - - name: Set up Python 3.11 + - name: Set up Python 3.12 uses: actions/setup-python@v3 with: - python-version: "3.11" + python-version: "3.12" - name: Install pypa/build run: >- python -m diff --git a/setup.py b/setup.py index 6e78b25..96e9c12 100644 --- a/setup.py +++ b/setup.py @@ -42,7 +42,7 @@ def read(fname): python_requires='>=3.10', install_requires=[ 'django>=4.2,<6', - 'skip-django-chamber>=0.7.2', + 'skip-django-chamber>=1.2.1', 'tqdm>=4.28.1', 'pyaes>=1.6.1', 'unidecode',