Skip to content
Draft

DRAFT #973

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/lib-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,10 +104,10 @@ jobs:
run: |
uv tool install 'cibuildwheel==3.2.1'

- name: Install OpenSSL for Windows
if: runner.os == 'Windows'
run: |
choco install openssl.light --no-progress -y
# - name: Install OpenSSL for Windows
# if: runner.os == 'Windows'
# run: |
# choco install openssl.light --no-progress -y

- name: Install Conan
if: runner.os == 'Windows'
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,8 @@ manylinux-pypy_aarch64-image = "manylinux_2_28"
enable = ["pypy"]
[tool.cibuildwheel.linux]

before-build = "rm -rf ~/.pyxbld && rpm --import https://repo.almalinux.org/almalinux/RPM-GPG-KEY-AlmaLinux && yum install -y libffi-devel libev libev-devel openssl openssl-devel"
# Original: yum install -y libffi-devel libev libev-devel openssl openssl-devel
before-build = "rm -rf ~/.pyxbld && rpm --import https://repo.almalinux.org/almalinux/RPM-GPG-KEY-AlmaLinux && yum install -y libffi-devel libev libev-devel"
# Install the optional lz4 compression dependency so the lz4 segment tests run
# (and fail loudly under CASS_DRIVER_NO_SKIP) instead of skipping silently.
test-extras = ["compress-lz4"]
Expand Down
Loading