git: 86ae776a26ae - main - sysutils/py-ansible-core: remove setuptools upper bound

From: Charlie Li <vishwin_at_FreeBSD.org>
Date: Thu, 12 Dec 2024 07:02:00 UTC
The branch main has been updated by vishwin:

URL: https://cgit.FreeBSD.org/ports/commit/?id=86ae776a26aebe0e5b88a966d9980aa485d76c73

commit 86ae776a26aebe0e5b88a966d9980aa485d76c73
Author:     Charlie Li <vishwin@FreeBSD.org>
AuthorDate: 2024-12-12 06:57:09 +0000
Commit:     Charlie Li <vishwin@FreeBSD.org>
CommitDate: 2024-12-12 06:57:09 +0000

    sysutils/py-ansible-core: remove setuptools upper bound
    
    Upstream added upper bound as a precaution at release time; the
    later versions build fine. Remove patch as appropriate when this
    port gets updated.
    
    With hat: python
    PR: 270358
---
 sysutils/py-ansible-core/files/patch-pyproject.toml | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/sysutils/py-ansible-core/files/patch-pyproject.toml b/sysutils/py-ansible-core/files/patch-pyproject.toml
new file mode 100644
index 000000000000..62995ad2fa50
--- /dev/null
+++ b/sysutils/py-ansible-core/files/patch-pyproject.toml
@@ -0,0 +1,7 @@
+--- pyproject.toml.orig	2024-11-04 18:35:30 UTC
++++ pyproject.toml
+@@ -1,3 +1,3 @@
+ [build-system]
+-requires = ["setuptools >= 45.2.0, <= 75.3.0"]  # lower bound to support controller Python versions, upper bound for latest version tested at release
++requires = ["setuptools >= 45.2.0"]  # lower bound to support controller Python versions
+ build-backend = "setuptools.build_meta"