diff options
author | Khem Raj <raj.khem@gmail.com> | 2025-04-10 00:07:24 -0700 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2025-04-10 18:39:31 -0700 |
commit | 9b0015577ce8717086ff1e4667638a81a3a5ebe4 (patch) | |
tree | b66282c83c0a84da17a9fd390d15d5bb103f58ed /meta-python/recipes-devtools/python/python3-charset-normalizer/0001-pyproject.toml-Relax-version-for-mypy.patch | |
parent | 4042e529b9cfcd5b598e53a1db839e9964caffe2 (diff) | |
download | meta-openembedded-9b0015577ce8717086ff1e4667638a81a3a5ebe4.tar.gz |
python3-charset-normalizer: Switch to PEP-517 build backends
Add ptest support but do not enable them as they all do not pass yet
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-charset-normalizer/0001-pyproject.toml-Relax-version-for-mypy.patch')
-rw-r--r-- | meta-python/recipes-devtools/python/python3-charset-normalizer/0001-pyproject.toml-Relax-version-for-mypy.patch | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-charset-normalizer/0001-pyproject.toml-Relax-version-for-mypy.patch b/meta-python/recipes-devtools/python/python3-charset-normalizer/0001-pyproject.toml-Relax-version-for-mypy.patch new file mode 100644 index 0000000000..d544caaa17 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-charset-normalizer/0001-pyproject.toml-Relax-version-for-mypy.patch | |||
@@ -0,0 +1,25 @@ | |||
1 | From 57b626d6d8c247c9203dde51a988b9401abe065c Mon Sep 17 00:00:00 2001 | ||
2 | From: Khem Raj <raj.khem@gmail.com> | ||
3 | Date: Wed, 9 Apr 2025 23:44:44 -0700 | ||
4 | Subject: [PATCH] pyproject.toml: Relax version for mypy | ||
5 | |||
6 | It asks for mypy <= 1.14.0 but we have 1.15.x | ||
7 | already in meta-python | ||
8 | |||
9 | Upstream-Status: Pending | ||
10 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
11 | --- | ||
12 | pyproject.toml | 2 +- | ||
13 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
14 | |||
15 | diff --git a/pyproject.toml b/pyproject.toml | ||
16 | index bbb8227..ad42715 100644 | ||
17 | --- a/pyproject.toml | ||
18 | +++ b/pyproject.toml | ||
19 | @@ -1,5 +1,5 @@ | ||
20 | [build-system] | ||
21 | -requires = ["setuptools", "setuptools-scm", "mypy>=1.4.1,<=1.14.0"] | ||
22 | +requires = ["setuptools", "setuptools-scm", "mypy>=1.4.1,<=1.16.0"] | ||
23 | build-backend = "setuptools.build_meta" | ||
24 | |||
25 | [project] | ||