diff options
author | Jeffery To <jeffery.to@gmail.com> | 2023-11-10 14:04:55 +0800 |
---|---|---|
committer | Tianling Shen <cnsztl@gmail.com> | 2023-11-16 02:30:21 +0800 |
commit | b354a7edbe35bf3cbaafb85edf74181ab7810202 (patch) | |
tree | 9959a8b6f03479a01933e79e2ce88e2c97fde790 /lang/python/python-argcomplete/patches | |
parent | 6ff496d113a69a1a6a55cb0ac0ae46241007dddc (diff) |
python-argcomplete: Add new package
From the README:
Argcomplete provides easy, extensible command line tab completion of
arguments for your Python application.
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
Diffstat (limited to 'lang/python/python-argcomplete/patches')
-rw-r--r-- | lang/python/python-argcomplete/patches/001-unpin-setuptools.patch | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lang/python/python-argcomplete/patches/001-unpin-setuptools.patch b/lang/python/python-argcomplete/patches/001-unpin-setuptools.patch new file mode 100644 index 000000000..a85ce857a --- /dev/null +++ b/lang/python/python-argcomplete/patches/001-unpin-setuptools.patch @@ -0,0 +1,9 @@ +--- a/pyproject.toml ++++ b/pyproject.toml +@@ -1,5 +1,5 @@ + [build-system] +-requires = ["setuptools>=67.7.2", "setuptools_scm[toml]>=6.2"] ++requires = ["setuptools", "setuptools_scm[toml]>=6.2"] + build-backend = "setuptools.build_meta" + + [project] |