diff options
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-gmpy2')
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-gmpy2/0001-Avoid-do_configure-requires-check-error.patch | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-gmpy2/0001-Avoid-do_configure-requires-check-error.patch b/meta-python/recipes-devtools/python/python3-gmpy2/0001-Avoid-do_configure-requires-check-error.patch new file mode 100644 index 0000000000..3c602cebe5 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-gmpy2/0001-Avoid-do_configure-requires-check-error.patch | |||
| @@ -0,0 +1,29 @@ | |||
| 1 | Subject: [PATCH] Avoid do_configure requires check error. | ||
| 2 | |||
| 3 | The gmpy2-2.3.0 need setuptools < 80, but version in oe-core is 80.9.0, | ||
| 4 | so fix it to avoid following error. | ||
| 5 | |||
| 6 | | ERROR Missing dependencies: | ||
| 7 | | setuptools<80,>=77 | ||
| 8 | |||
| 9 | Upstream-Status: Inappropriate | ||
| 10 | |||
| 11 | Signed-off-by: Liu Yiding <liuyd.fnst@fujitsu.com> | ||
| 12 | --- | ||
| 13 | pyproject.toml | 2 +- | ||
| 14 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
| 15 | |||
| 16 | diff --git a/pyproject.toml b/pyproject.toml | ||
| 17 | index 1f00809..3a4f3e2 100644 | ||
| 18 | --- a/pyproject.toml | ||
| 19 | +++ b/pyproject.toml | ||
| 20 | @@ -1,5 +1,5 @@ | ||
| 21 | [build-system] | ||
| 22 | -requires = ['setuptools>=77,<80', 'setuptools_scm[toml]>=6.0'] | ||
| 23 | +requires = ['setuptools>=77', 'setuptools_scm[toml]>=6.0'] | ||
| 24 | build-backend = 'setuptools.build_meta' | ||
| 25 | |||
| 26 | [project] | ||
| 27 | -- | ||
| 28 | 2.43.0 | ||
| 29 | |||
