Skip to content

Commit 5e09863

Browse files
committedJun 10, 2024·
CI: download libev via conan, for windows builds to have it
windows builds so far was running with having libev available and until this sync the fallback for python 3.12 was asyncio eventloop, but now we fail and not fall back to asyncio. so all unittest on windows are failing on any import from cassandra.connection. in this change we use conan to download libev, and using it to compile the driver with libev Ref: https://conan.io/center/recipes/libev
1 parent 90b17c6 commit 5e09863

File tree

4 files changed

+79
-1
lines changed

4 files changed

+79
-1
lines changed
 

‎.github/workflows/build-push.yml

+11
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ env:
1111
CIBW_BEFORE_BUILD_LINUX: "rm -rf ~/.pyxbld && yum install -y libffi-devel libev libev-devel openssl openssl-devel"
1212
CIBW_ENVIRONMENT: "CASS_DRIVER_BUILD_CONCURRENCY=2 CFLAGS='-g0 -O3'"
1313
CIBW_SKIP: cp35* cp36* *musllinux*
14+
CIBW_BUILD_VERBOSITY: 3
1415

1516
jobs:
1617
build_wheels:
@@ -65,6 +66,16 @@ jobs:
6566
run: |
6667
choco install openssl --version=3.3.1 -f -y
6768
69+
- name: Install Conan
70+
if: runner.os == 'Windows'
71+
uses: turtlebrowser/get-conan@main
72+
73+
- name: configure libev for Windows
74+
if: runner.os == 'Windows'
75+
run: |
76+
conan profile detect
77+
conan install conanfile.py
78+
6879
- name: Install OpenSSL for MacOS
6980
if: runner.os == 'MacOs'
7081
run: |

‎MANIFEST.in

+1
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ include cassandra/io/libevwrapper.c
44
include cassandra/*.pyx
55
include cassandra/*.pxd
66
include cassandra/*.h
7+
graft build-release

‎conanfile.py

+57
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
import json
2+
from pathlib import Path
3+
4+
from conan import ConanFile
5+
from conan.tools.layout import basic_layout
6+
from conan.internal import check_duplicated_generator
7+
from conan.tools.files import save
8+
9+
10+
CONAN_COMMANDLINE_FILENAME = "conandeps.env"
11+
12+
class CommandlineDeps:
13+
def __init__(self, conanfile):
14+
"""
15+
:param conanfile: ``< ConanFile object >`` The current recipe object. Always use ``self``.
16+
"""
17+
self._conanfile = conanfile
18+
19+
def generate(self) -> None:
20+
"""
21+
Collects all dependencies and components, then, generating a Makefile
22+
"""
23+
check_duplicated_generator(self, self._conanfile)
24+
25+
host_req = self._conanfile.dependencies.host
26+
build_req = self._conanfile.dependencies.build # tool_requires
27+
test_req = self._conanfile.dependencies.test
28+
29+
content_buffer = ""
30+
31+
# Filter the build_requires not activated for any requirement
32+
dependencies = [tup for tup in list(host_req.items()) + list(build_req.items()) + list(test_req.items()) if not tup[0].build]
33+
34+
for require, dep in dependencies:
35+
# Require is not used at the moment, but its information could be used, and will be used in Conan 2.0
36+
if require.build:
37+
continue
38+
include_dir = Path(dep.package_folder) / 'include'
39+
package_dir = Path(dep.package_folder) / 'lib'
40+
content_buffer += json.dumps(dict(include_dirs=str(include_dir), library_dirs=str(package_dir)))
41+
42+
save(self._conanfile, CONAN_COMMANDLINE_FILENAME, content_buffer)
43+
self._conanfile.output.info(f"Generated {CONAN_COMMANDLINE_FILENAME}")
44+
45+
46+
class python_driverConan(ConanFile):
47+
win_bash = False
48+
49+
settings = "os", "compiler", "build_type", "arch"
50+
requires = "libev/4.33"
51+
52+
def layout(self):
53+
basic_layout(self)
54+
55+
def generate(self):
56+
pc = CommandlineDeps(self)
57+
pc.generate()

‎setup.py

+10-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@
1515
from __future__ import print_function
1616
import os
1717
import sys
18+
import json
1819
import warnings
20+
from pathlib import Path
1921

2022
if __name__ == '__main__' and sys.argv[1] == "gevent_nosetests":
2123
print("Running gevent tests")
@@ -149,6 +151,13 @@ def __init__(self, ext):
149151
if is_macos:
150152
libev_includes.extend(['/opt/homebrew/include', os.path.expanduser('~/homebrew/include')])
151153
libev_libdirs.extend(['/opt/homebrew/lib'])
154+
155+
conan_envfile = Path(__file__).parent / 'build-release/conan/conandeps.env'
156+
if conan_envfile.exists():
157+
conan_paths = json.loads(conan_envfile.read_text())
158+
libev_includes.extend([conan_paths.get('include_dirs')])
159+
libev_libdirs.extend([conan_paths.get('library_dirs')])
160+
152161
libev_ext = Extension('cassandra.io.libevwrapper',
153162
sources=['cassandra/io/libevwrapper.c'],
154163
include_dirs=libev_includes,
@@ -189,7 +198,7 @@ def __init__(self, ext):
189198

190199
try_extensions = "--no-extensions" not in sys.argv and is_supported_platform and is_supported_arch and not os.environ.get('CASS_DRIVER_NO_EXTENSIONS')
191200
try_murmur3 = try_extensions and "--no-murmur3" not in sys.argv
192-
try_libev = try_extensions and "--no-libev" not in sys.argv and not is_pypy and not is_windows
201+
try_libev = try_extensions and "--no-libev" not in sys.argv and not is_pypy
193202
try_cython = try_extensions and "--no-cython" not in sys.argv and not is_pypy and not os.environ.get('CASS_DRIVER_NO_CYTHON')
194203
try_cython &= 'egg_info' not in sys.argv # bypass setup_requires for pip egg_info calls, which will never have --install-option"--no-cython" coming fomr pip
195204

0 commit comments

Comments
 (0)