mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-03-04 20:19:39 +00:00
1.Changelog: https://github.com/gmpy2/gmpy2/releases/tag/v2.3.0 2.Add python3-setuptools-scm-native as depend to satisfy require check of setuptools_scm 3.Add 0001-Avoid-do_configure-requires-check-error.patch to fix require check error of setuptools | ERROR Missing dependencies: | setuptools_scm[toml]>=6.0 | setuptools<80,>=77 Signed-off-by: Liu Yiding <liuyd.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
30 lines
723 B
Diff
30 lines
723 B
Diff
Subject: [PATCH] Avoid do_configure requires check error.
|
|
|
|
The gmpy2-2.3.0 need setuptools < 80, but version in oe-core is 80.9.0,
|
|
so fix it to avoid following error.
|
|
|
|
| ERROR Missing dependencies:
|
|
| setuptools<80,>=77
|
|
|
|
Upstream-Status: Inappropriate
|
|
|
|
Signed-off-by: Liu Yiding <liuyd.fnst@fujitsu.com>
|
|
---
|
|
pyproject.toml | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/pyproject.toml b/pyproject.toml
|
|
index 1f00809..3a4f3e2 100644
|
|
--- a/pyproject.toml
|
|
+++ b/pyproject.toml
|
|
@@ -1,5 +1,5 @@
|
|
[build-system]
|
|
-requires = ['setuptools>=77,<80', 'setuptools_scm[toml]>=6.0']
|
|
+requires = ['setuptools>=77', 'setuptools_scm[toml]>=6.0']
|
|
build-backend = 'setuptools.build_meta'
|
|
|
|
[project]
|
|
--
|
|
2.43.0
|
|
|