From 4300ec329330869b69ba17d94e057df0b7351517 Mon Sep 17 00:00:00 2001 From: Anders Kaseorg Date: Wed, 23 Aug 2023 19:11:05 -0700 Subject: [PATCH] requirements: Fix transitively replaced two_factor migrations. Signed-off-by: Anders Kaseorg --- requirements/common.in | 2 +- requirements/dev.txt | 5 ++--- requirements/prod.txt | 5 ++--- version.py | 2 +- 4 files changed, 6 insertions(+), 8 deletions(-) diff --git a/requirements/common.in b/requirements/common.in index 8d62def08f..ca672b388f 100644 --- a/requirements/common.in +++ b/requirements/common.in @@ -130,7 +130,7 @@ cryptography lxml # Needed for 2-factor authentication -django-two-factor-auth[call,phonenumberslite,sms] +https://github.com/andersk/django-two-factor-auth/archive/b0ae80051d45ac360595ed327b044c766f57d32f.zip#egg=django-two-factor-auth[call,phonenumberslite,sms]==1.15.4+git # https://github.com/jazzband/django-two-factor-auth/pull/649 # Needed for processing payments (in corporate) stripe diff --git a/requirements/dev.txt b/requirements/dev.txt index 0fb43ce5de..14fab99e13 100644 --- a/requirements/dev.txt +++ b/requirements/dev.txt @@ -659,9 +659,8 @@ django-stubs-ext==4.2.2 \ # via # -r requirements/common.in # django-stubs -django-two-factor-auth[call,phonenumberslite,sms]==1.15.4 \ - --hash=sha256:4570ffa774bbced191f670079fea4e72a350ee91b2a937d5eb08e535ca47f1a6 \ - --hash=sha256:6be4313069bffcaef8b657573ddc82f82e77da1a0bdb31175b1649c2411c0b0a +https://github.com/andersk/django-two-factor-auth/archive/b0ae80051d45ac360595ed327b044c766f57d32f.zip#egg=django-two-factor-auth[call,phonenumberslite,sms]==1.15.4+git \ + --hash=sha256:e5d5c876316fc60057efac812de0dae1b064b35bb2798fac44c04c6bb70c50a5 # via -r requirements/common.in dnspython==2.4.2 \ --hash=sha256:57c6fbaaeaaf39c891292012060beb141791735dbb4004798328fc2c467402d8 \ diff --git a/requirements/prod.txt b/requirements/prod.txt index 665c2453b5..9043540e87 100644 --- a/requirements/prod.txt +++ b/requirements/prod.txt @@ -479,9 +479,8 @@ django-stubs-ext==4.2.2 \ --hash=sha256:c69d1cc46f1c4c3b7894b685a5022c29b2a36c7cfb52e23762eaf357ebfc2c98 \ --hash=sha256:fdacc65a14d2d4b97334b58ff178a5853ec8c8c76cec406e417916ad67536ce4 # via -r requirements/common.in -django-two-factor-auth[call,phonenumberslite,sms]==1.15.4 \ - --hash=sha256:4570ffa774bbced191f670079fea4e72a350ee91b2a937d5eb08e535ca47f1a6 \ - --hash=sha256:6be4313069bffcaef8b657573ddc82f82e77da1a0bdb31175b1649c2411c0b0a +https://github.com/andersk/django-two-factor-auth/archive/b0ae80051d45ac360595ed327b044c766f57d32f.zip#egg=django-two-factor-auth[call,phonenumberslite,sms]==1.15.4+git \ + --hash=sha256:e5d5c876316fc60057efac812de0dae1b064b35bb2798fac44c04c6bb70c50a5 # via -r requirements/common.in dnspython==2.4.2 \ --hash=sha256:57c6fbaaeaaf39c891292012060beb141791735dbb4004798328fc2c467402d8 \ diff --git a/version.py b/version.py index 5ae83855b3..d66095bcb5 100644 --- a/version.py +++ b/version.py @@ -48,4 +48,4 @@ API_FEATURE_LEVEL = 204 # historical commits sharing the same major version, in which case a # minor version bump suffices. -PROVISION_VERSION = (247, 5) +PROVISION_VERSION = (247, 6)