diff options
author | Kai Knoblich <kai@FreeBSD.org> | 2024-04-27 10:45:13 +0200 |
---|---|---|
committer | Kai Knoblich <kai@FreeBSD.org> | 2024-04-27 11:08:48 +0200 |
commit | 680c68fd4d6975dcfd20b2b74fd5dcfc53cdf233 (patch) | |
tree | c84ef7a6728a0c196a27b1428f070feb489ec527 /devel/py-openapi-core | |
parent | misc/ola: Fix build on 15-CURRENT (diff) |
*: Switch consumers over to Django 4.2
Django 3.2 reached its End-of-Life on 1st April 2024 and Django 4.2 is
the new LTS (= Long Term Support) release which will be supported until
April 2026.
* Switch most ports that use www/py-django32 to www/py-django42.
* Ports that are not compatible with Django 3.2 have already been set
with an expiration date were not taken into account.
* Bump PORTREVISION due dependency change where necessary.
PR: 276319
Reviewed by: dvl, grembo, ultima
Approved by: bofh (implicit), dvl, grembo, Kevin Golding, sunpoet,
ultima, maintainer timeout (remaining maintainers)
Differential Revision: https://reviews.freebsd.org/D44637
Diffstat (limited to 'devel/py-openapi-core')
-rw-r--r-- | devel/py-openapi-core/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/devel/py-openapi-core/Makefile b/devel/py-openapi-core/Makefile index 5d1d6d1e6ca9..8330bdad5972 100644 --- a/devel/py-openapi-core/Makefile +++ b/devel/py-openapi-core/Makefile @@ -1,5 +1,6 @@ PORTNAME= openapi-core PORTVERSION= 0.19.1 +PORTREVISION= 1 CATEGORIES= devel python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -40,7 +41,7 @@ STARLETTE_DESC= Starlette support AIOHTTP_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}aiohttp>=3.0:www/py-aiohttp@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}multidict>=6.0.4<7:www/py-multidict@${PY_FLAVOR} -DJANGO_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}django32>=3.0:www/py-django32@${PY_FLAVOR} +DJANGO_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}django42>=3.0:www/py-django42@${PY_FLAVOR} FALCON_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}falcon>=3.0:www/py-falcon@${PY_FLAVOR} FASTAPI_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}fastapi>=0.108.0<1:www/py-fastapi@${PY_FLAVOR} FLASK_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}flask>=0:www/py-flask@${PY_FLAVOR} |