diff options
| author | Leon Anavi <leon.anavi@konsulko.com> | 2026-02-05 12:20:13 +0200 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2026-02-06 10:06:25 -0800 |
| commit | 02768cd67eb5b667b622c65d60ca0b9a8547010c (patch) | |
| tree | b061130674cdf0bf8edf76c6d8c6a668cf940afa /meta-python/recipes-devtools/python | |
| parent | 23f8119aa7c66d96a48705b354223fc5a395ba60 (diff) | |
| download | meta-openembedded-02768cd67eb5b667b622c65d60ca0b9a8547010c.tar.gz | |
python3-dbus-fast: Upgrade 2.44.5 -> 4.0.0
Upgrade to release 4.0.0:
- Chores
- Apt-get update before apt-get install
- Fix unix_fds parameter types
- Wrap lines in docs
- Annotated types for D-Bus signatures
Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python')
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-dbus-fast/0001-pyproject.toml-Remove-upper-version-constraint-for-C.patch | 14 | ||||
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-dbus-fast_4.0.0.bb (renamed from meta-python/recipes-devtools/python/python3-dbus-fast_2.44.5.bb) | 2 |
2 files changed, 8 insertions, 8 deletions
diff --git a/meta-python/recipes-devtools/python/python3-dbus-fast/0001-pyproject.toml-Remove-upper-version-constraint-for-C.patch b/meta-python/recipes-devtools/python/python3-dbus-fast/0001-pyproject.toml-Remove-upper-version-constraint-for-C.patch index 5366627abf..e5b53340a8 100644 --- a/meta-python/recipes-devtools/python/python3-dbus-fast/0001-pyproject.toml-Remove-upper-version-constraint-for-C.patch +++ b/meta-python/recipes-devtools/python/python3-dbus-fast/0001-pyproject.toml-Remove-upper-version-constraint-for-C.patch | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | From 85189fb66d3abb2645605f8a3c14d8152ef755fe Mon Sep 17 00:00:00 2001 | 1 | From bca444d7069afab9e1ac84f765e744d308d39e57 Mon Sep 17 00:00:00 2001 |
| 2 | From: Khem Raj <raj.khem@gmail.com> | 2 | From: Khem Raj <raj.khem@gmail.com> |
| 3 | Date: Sun, 18 May 2025 10:24:19 -0700 | 3 | Date: Sun, 18 May 2025 10:24:19 -0700 |
| 4 | Subject: [PATCH] pyproject.toml: Remove upper version constraint for Cython | 4 | Subject: [PATCH] pyproject.toml: Remove upper version constraint for Cython |
| @@ -11,23 +11,23 @@ Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> | |||
| 11 | 1 file changed, 2 insertions(+), 2 deletions(-) | 11 | 1 file changed, 2 insertions(+), 2 deletions(-) |
| 12 | 12 | ||
| 13 | diff --git a/pyproject.toml b/pyproject.toml | 13 | diff --git a/pyproject.toml b/pyproject.toml |
| 14 | index e22ea42..f670d3d 100644 | 14 | index 6604cb8..40bd8c3 100644 |
| 15 | --- a/pyproject.toml | 15 | --- a/pyproject.toml |
| 16 | +++ b/pyproject.toml | 16 | +++ b/pyproject.toml |
| 17 | @@ -50,7 +50,7 @@ pytest-cov = ">=3,<7" | 17 | @@ -50,7 +50,7 @@ pytest-cov = ">=3,<8" |
| 18 | pytest-asyncio = ">=0.19,<1.3" | 18 | pytest-asyncio = ">=0.19,<1.4" |
| 19 | pycairo = "^1.21.0" | 19 | pycairo = "^1.21.0" |
| 20 | PyGObject = {version = ">=3.50,<3.51", python = "<4"} | 20 | PyGObject = {version = ">=3.50,<3.51", python = "<4"} |
| 21 | -Cython = ">=3,<3.2.0" | 21 | -Cython = ">=3,<3.3.0" |
| 22 | +Cython = ">=3" | 22 | +Cython = ">=3" |
| 23 | setuptools = ">=65.4.1,<81.0.0" | 23 | setuptools = ">=65.4.1,<81.0.0" |
| 24 | pytest-timeout = "^2.1.0" | 24 | pytest-timeout = "^2.1.0" |
| 25 | pytest-codspeed = ">=3.1.1,<5.0.0" | 25 | pytest-codspeed = ">=3.1.1,<5.0.0" |
| 26 | @@ -104,7 +104,7 @@ module = "docs.*" | 26 | @@ -108,7 +108,7 @@ module = "docs.*" |
| 27 | ignore_errors = true | 27 | ignore_errors = true |
| 28 | 28 | ||
| 29 | [build-system] | 29 | [build-system] |
| 30 | -requires = ['setuptools>=65.4.1', 'wheel', 'Cython>=3,<3.1.0', "poetry-core>=1.0.0"] | 30 | -requires = ['setuptools>=65.4.1', 'wheel', 'Cython>=3,<3.3.0', "poetry-core>=1.0.0"] |
| 31 | +requires = ['setuptools>=65.4.1', 'wheel', 'Cython>=3', "poetry-core>=1.0.0"] | 31 | +requires = ['setuptools>=65.4.1', 'wheel', 'Cython>=3', "poetry-core>=1.0.0"] |
| 32 | build-backend = "poetry.core.masonry.api" | 32 | build-backend = "poetry.core.masonry.api" |
| 33 | 33 | ||
diff --git a/meta-python/recipes-devtools/python/python3-dbus-fast_2.44.5.bb b/meta-python/recipes-devtools/python/python3-dbus-fast_4.0.0.bb index 4f21ec379e..15bbc1706e 100644 --- a/meta-python/recipes-devtools/python/python3-dbus-fast_2.44.5.bb +++ b/meta-python/recipes-devtools/python/python3-dbus-fast_4.0.0.bb | |||
| @@ -4,7 +4,7 @@ LICENSE = "MIT" | |||
| 4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=729e372b5ea0168438e4fd4a00a04947" | 4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=729e372b5ea0168438e4fd4a00a04947" |
| 5 | 5 | ||
| 6 | SRC_URI += "file://0001-pyproject.toml-Remove-upper-version-constraint-for-C.patch" | 6 | SRC_URI += "file://0001-pyproject.toml-Remove-upper-version-constraint-for-C.patch" |
| 7 | SRC_URI[sha256sum] = "e9d738e3898e2d505d7f2d5d21949bd705d7cd3d7240dda5481bb1c5fd5e3da8" | 7 | SRC_URI[sha256sum] = "e1d3ee49a4a81524d7caaa2d5a31fc71075a1c977b661df958cee24bef86b8fe" |
| 8 | 8 | ||
| 9 | PYPI_PACKAGE = "dbus_fast" | 9 | PYPI_PACKAGE = "dbus_fast" |
| 10 | UPSTREAM_CHECK_PYPI_PACKAGE = "${PYPI_PACKAGE}" | 10 | UPSTREAM_CHECK_PYPI_PACKAGE = "${PYPI_PACKAGE}" |
