summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-cassandra-driver
diff options
context:
space:
mode:
authorGyorgy Sarvari <skandigraun@gmail.com>2026-03-15 21:41:00 +0100
committerKhem Raj <raj.khem@gmail.com>2026-03-18 14:33:25 -0700
commit7a3ce6a063a593190154043c63d977efe8ffa78b (patch)
tree433c32ab248283354c8fc23d2ccf152408451e70 /meta-python/recipes-devtools/python/python3-cassandra-driver
parent4ac220373ba02a11e125f28e3b5c057847503958 (diff)
downloadmeta-openembedded-7a3ce6a063a593190154043c63d977efe8ffa78b.tar.gz
python3-cassandra-driver: upgrade 3.29.2 -> 3.29.3
Also, add a patch to be able to build with Setuptools 82. This patch is oe-specific, but upstream has already merged[1] a patch that should make it compatible with the latest Setuptools. It however seems to require multiple patches to apply clean. The patch in this change is expected to be a short term workaround until the next version is released. Changelog: Features - Upgraded cython to 3.0.x - Add support for DSE 6.9.x and HCD releases to CI - Add execute_concurrent_async and expose execute_concurrent_* in Session Bug Fixes - Update geomet to align with requirements.txt - Connection failure to SNI endpoint when first host is unavailable - Maintain compatibility with CPython 3.13 Others - Remove duplicated condition in primary key check - Remove Python 3.8 which reached EOL on Oct 2024, update cryptography lib to 42 - Remove obsolete urllib2 from ez_setup.py - Remove stale dependency on sure - Removed 2.7 Cpython defines [1]: https://github.com/apache/cassandra-python-driver/pull/1268 Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-cassandra-driver')
-rw-r--r--meta-python/recipes-devtools/python/python3-cassandra-driver/0001-skip-verifying-the-availability-of-setuptools.patch34
1 files changed, 34 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-cassandra-driver/0001-skip-verifying-the-availability-of-setuptools.patch b/meta-python/recipes-devtools/python/python3-cassandra-driver/0001-skip-verifying-the-availability-of-setuptools.patch
new file mode 100644
index 0000000000..b58fd04752
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-cassandra-driver/0001-skip-verifying-the-availability-of-setuptools.patch
@@ -0,0 +1,34 @@
1From ebee090ac020c5a4e4194788fc2f53d7a4e30b40 Mon Sep 17 00:00:00 2001
2From: Gyorgy Sarvari <skandigraun@gmail.com>
3Date: Sun, 15 Mar 2026 21:28:07 +0100
4Subject: [PATCH] skip verifying the availability of setuptools
5
6The setup script checks is setuptools is available (with the correct minimum
7version), using setuptool's pkg_resouces modules. Setuptools has dropped
8this module in version 82, making this import fail.
9
10This patch skips the availability check of Setuptools, it is expected to be
11always available from oe-core - the patch itself is oe-specific.
12
13Upstream has already prepared a solution to rework their setup script to
14work with the latest Setuptools, however that patch builds on several other
15patches.
16
17Upstream-Status: Inappropriate [oe-specific]
18Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com>
19---
20 ez_setup.py | 1 +
21 1 file changed, 1 insertion(+)
22
23diff --git a/ez_setup.py b/ez_setup.py
24index 76e7105..c668e5d 100644
25--- a/ez_setup.py
26+++ b/ez_setup.py
27@@ -107,6 +107,7 @@ def _do_download(version, download_base, to_dir, download_delay):
28
29 def use_setuptools(version=DEFAULT_VERSION, download_base=DEFAULT_URL,
30 to_dir=os.curdir, download_delay=15):
31+ return
32 # making sure we use the absolute path
33 to_dir = os.path.abspath(to_dir)
34 was_imported = 'pkg_resources' in sys.modules or \