Skip to content

Commit c77fd98

Browse files
committed
no 3.13 support yet
1 parent 9b731fd commit c77fd98

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

.github/workflows/build-wheels.sh

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@ echo "[net]" >> "$HOME/.cargo/config.toml"
1111
echo "git-fetch-with-cli = true" >> "$HOME/.cargo/config.toml"
1212

1313
# build wheels
14-
for PYBIN in /opt/python/cp3[891]*/bin; do
15-
export PYO3_USE_ABI3_FORWARD_COMPATIBILITY=1 # for python 3.13
14+
for PYBIN in /opt/python/cp3[89]*/bin /opt/python/cp31[012]*/bin; do
1615
"${PYBIN}/pip" install -r requirements.txt -r requirements-dev.txt
1716
"${PYBIN}/maturin" build -i "${PYBIN}/python" --release --strip
1817
done
@@ -23,7 +22,7 @@ for wheel in target/wheels/*.whl; do
2322
done
2423

2524
# test wheels
26-
for PYBIN in /opt/python/cp3[891]*/bin; do
25+
for PYBIN in /opt/python/cp3[89]*/bin /opt/python/cp31[012]*/bin; do
2726
"${PYBIN}/pip" install kmedoids --no-index --find-links wheelhouse
2827
cd tests && "${PYBIN}/python" -m unittest discover && cd ..
2928
done

0 commit comments

Comments
 (0)