From 40cfff8fe9594c4507db705111461973a9bbb0f0 Mon Sep 17 00:00:00 2001 From: Alexandru Ardelean Date: Wed, 27 Nov 2024 16:41:18 +0200 Subject: [PATCH] python-dateutil: "downgrade" to version 2.9.0 Fixes: https://github.com/openwrt/packages/pull/23648#issuecomment-2495371925 As weird as this sounds, the only different between the current version (2.9.0.post0) and 2.9.0 is the pinning of `setuptools_scm` to `< 8`. See: https://github.com/dateutil/dateutil/releases/tag/2.9.0.post0 Also, the APK build doesn't seem to like the 'post0' suffix. Signed-off-by: Alexandru Ardelean --- lang/python/python-dateutil/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lang/python/python-dateutil/Makefile b/lang/python/python-dateutil/Makefile index 8d06c49a02..e6247407f9 100644 --- a/lang/python/python-dateutil/Makefile +++ b/lang/python/python-dateutil/Makefile @@ -8,12 +8,12 @@ include $(TOPDIR)/rules.mk PKG_NAME:=python-dateutil -PKG_VERSION:=2.9.0.post0 +PKG_VERSION:=2.9.0 PKG_RELEASE:=1 PKG_LICENSE:=BSD-2-Clause PYPI_NAME:=$(PKG_NAME) -PKG_HASH:=37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3 +PKG_HASH:=78e73e19c63f5b20ffa567001531680d939dc042bf7850431877645523c66709 PKG_MAINTAINER:=Alexandru Ardelean PKG_BUILD_DEPENDS:=python-setuptools-scm/host -- 2.30.2