Bug 2458667 - python-django-allauth fails to build with Python 3.15: AssertionError: assert 'Flow.PROVIDER_SIGNUP' == 'provider_signup'
Summary: python-django-allauth fails to build with Python 3.15: AssertionError: asser...
Keywords:
Status: NEW
Alias: None
Product: Fedora
Classification: Fedora
Component: python-django-allauth
Version: rawhide
Hardware: Unspecified
OS: Unspecified
unspecified
unspecified
Target Milestone: ---
Assignee: Michel Lind
QA Contact:
URL:
Whiteboard:
Depends On:
Blocks: PYTHON3.15
TreeView+ depends on / blocked
 
Reported: 2026-04-15 12:17 UTC by Karolina Surma
Modified: 2026-04-15 12:17 UTC (History)
7 users (show)

Fixed In Version:
Clone Of:
Environment:
Last Closed:
Type: Bug
Embargoed:


Attachments (Terms of Use)

Description Karolina Surma 2026-04-15 12:17:09 UTC
python-django-allauth fails to build with Python 3.15.0a8.

8 tests fail with what looks for all of them as a different representation of objects, leading to AssertionErrors:

_________________________ test_signup_closed[browser] __________________________

client = <django.test.client.Client object at 0x7ff991e37570>
headless_reverse = <function headless_reverse.<locals>.rev at 0x7ff991e59c70>
db = None
settings = <pytest_django.fixtures.SettingsWrapper object at 0x7ff993bc3430>

    def test_signup_closed(client, headless_reverse, db, settings):
        settings.ACCOUNT_EMAIL_VERIFICATION = "mandatory"
        settings.ACCOUNT_EMAIL_REQUIRED = True
        settings.ACCOUNT_USERNAME_REQUIRED = False
        id_token = json.dumps(
            {
                "id": 123,
            }
        )
        resp = client.post(
            headless_reverse("headless:socialaccount:provider_token"),
            data={
                "provider": "dummy",
                "token": {
                    "id_token": id_token,
                },
                "process": AuthProcess.LOGIN,
            },
            content_type="application/json",
        )
        assert resp.status_code == HTTPStatus.UNAUTHORIZED
        pending_flow = [f for f in resp.json()["data"]["flows"] if f.get("is_pending")][0]
>       assert pending_flow["id"] == "provider_signup"
E       AssertionError: assert 'Flow.PROVIDER_SIGNUP' == 'provider_signup'
E         
E         - provider_signup
E         + Flow.PROVIDER_SIGNUP

allauth/headless/socialaccount/tests/test_views.py:353: AssertionError

https://docs.python.org/3.15/whatsnew/3.15.html

For the build logs, see:
https://copr-be.cloud.fedoraproject.org/results/@python/python3.15/fedora-rawhide-x86_64/10318668-python-django-allauth/

For all our attempts to build python-django-allauth with Python 3.15, see:
https://copr.fedorainfracloud.org/coprs/g/python/python3.15/package/python-django-allauth/

Testing and mass rebuild of packages is happening in copr.
You can follow these instructions to test locally in mock if your package builds with Python 3.15:
https://copr.fedorainfracloud.org/coprs/g/python/python3.15/

Let us know here if you have any questions.

Python 3.15 is planned to be included in Fedora 45.
To make that update smoother, we're building Fedora packages with all pre-releases of Python 3.15.
A build failure prevents us from testing all dependent packages (transitive [Build]Requires),
so if this package is required a lot, it's important for us to get it fixed soon.

We'd appreciate help from the people who know this package best,
but if you don't want to work on this now, let us know so we can try to work around it on our side.


Note You need to log in before you can comment on or make changes to this bug.