Skip to content

Commit 900c601

Browse files
authored
Merge pull request #489 from RamSaw/linux_fix
fix linux publish
2 parents 34afd12 + b896f28 commit 900c601

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/publish.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
matrix:
1313
# TODO: fix for Mac and Windows.
1414
os: [ubuntu-latest]
15-
python-version: ["3.10", 3.11, 3.12, 3.13, 3.14]
15+
python-version: [3.11, 3.12, 3.13, 3.14]
1616
runs-on: ${{ matrix.os }}
1717

1818
steps:
@@ -63,6 +63,7 @@ jobs:
6363
py_version=${system_python_version//.} # 3.11 -> 311
6464
export CIBW_BUILD=cp${py_version}-manylinux_x86_64
6565
export CIBW_BUILD_VERBOSITY=1
66+
export CIBW_BEFORE_ALL_LINUX="yum install -y openssl-devel || dnf install -y openssl-devel || apt-get install -y libssl-dev"
6667
# Build wheel
6768
echo "Building ${CIBW_BUILD} wheel"
6869
python -m cibuildwheel --output-dir dist .

0 commit comments

Comments
 (0)