From 7411a45a6b3729749e339fba07001e1105b6df40 Mon Sep 17 00:00:00 2001 From: Nick Pope Date: Fri, 6 Dec 2024 18:32:39 +0000 Subject: [PATCH] Fixed #35980 -- Updated setuptools and project name. --- docs/internals/howto-release-django.txt | 6 +++--- pyproject.toml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/internals/howto-release-django.txt b/docs/internals/howto-release-django.txt index 131c60fec8..fc20e1cd3f 100644 --- a/docs/internals/howto-release-django.txt +++ b/docs/internals/howto-release-django.txt @@ -480,7 +480,7 @@ Now you're ready to actually put the release out there. To do this: $ python -m venv django-pip-tarball $ . django-pip-tarball/bin/activate - $ python -m pip install https://www.djangoproject.com/m/releases/$MAJOR_VERSION/Django-$RELEASE_VERSION.tar.gz + $ python -m pip install https://www.djangoproject.com/m/releases/$MAJOR_VERSION/django-$RELEASE_VERSION.tar.gz $ django-admin startproject test_tarball $ cd test_tarball $ ./manage.py --help # Ensure executable bits @@ -492,7 +492,7 @@ Now you're ready to actually put the release out there. To do this: $ python -m venv django-pip-wheel $ . django-pip-wheel/bin/activate - $ python -m pip install https://www.djangoproject.com/m/releases/$MAJOR_VERSION/Django-$RELEASE_VERSION-py3-none-any.whl + $ python -m pip install https://www.djangoproject.com/m/releases/$MAJOR_VERSION/django-$RELEASE_VERSION-py3-none-any.whl $ django-admin startproject test_wheel $ cd test_wheel $ ./manage.py --help # Ensure executable bits @@ -517,7 +517,7 @@ Now you're ready to actually put the release out there. To do this: #. Go to the `Add release page in the admin`__, enter the new release number exactly as it appears in the name of the tarball - (``Django-.tar.gz``). So for example enter "4.1.1" or "4.2rc1", + (``django-.tar.gz``). So for example enter "4.1.1" or "4.2rc1", etc. If the release is part of an LTS branch, mark it so. __ https://www.djangoproject.com/admin/releases/release/add/ diff --git a/pyproject.toml b/pyproject.toml index 86ea7393ec..f7ef415f68 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,9 +1,9 @@ [build-system] -requires = ["setuptools>=61.0.0,<69.3.0"] +requires = ["setuptools>=69.3.0"] build-backend = "setuptools.build_meta" [project] -name = "Django" +name = "django" dynamic = ["version"] requires-python = ">= 3.10" dependencies = [