-
Notifications
You must be signed in to change notification settings - Fork 430
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Upgrade GitHub Actions and PyPy 3.10 and Django 5.0 #699
Conversation
@auvipy Can you please approve the workflow runs so I can see if these tests pass? |
Could we get a status update on this? I want to upgrade to Django 5, but I can't because of the incompatibility with |
tox.ini
Outdated
@@ -72,7 +74,7 @@ commands = | |||
basepython = python3.9 | |||
usedevelop = true | |||
commands = | |||
pip install -U https://github.com/celery/celery/zipball/master#egg=celery | |||
pip install -U https://github.com/celery/kombu/zipball/master#egg=kombu | |||
pip install --upgrade https://github.com/celery/celery/zipball/master#egg=celery |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
pip install --upgrade https://github.com/celery/celery/zipball/master#egg=celery | |
pip install --upgrade https://github.com/celery/celery/zipball/main#egg=celery |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can you please check the pypy failure?
https://github.com/actions/setup-python/blob/main/docs/advanced-usage.md#specifying-a-pypy-version Let's land with |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
good decision and great job
* Upgrade GitHub Actions and PyPy * Let's drop Django v5 on PyPy v3.10.
Upgrading our project from Django v4.2 to v5.0 downgraded our versions of django-celery-beat and django-timezone-field!
Pipfile.lock
:%
python3.12 -m venv .venv
%
source .venv/bin/activate
%
pip install --upgrade pip
%
pip install django==5.0 django-celery-beat==2.5.0
--> Failure%
pip install django==5.0 django-celery-beat
--> Success but withdjango-celery-beat
downgraded2.5.0
-->v2.1.0
anddjango-timezone-field
downgraded fromv6.1.0
-->v4.2.3
Please release a new version to PyPI.