Skip to content

Commit 31cc129

Browse files
committed
add 3.14 to github build
1 parent 0bf8a68 commit 31cc129

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/build-wheels.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +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[89]*/bin /opt/python/cp31[0123]-cp31[0123]/bin; do
14+
for PYBIN in /opt/python/cp3[89]*/bin /opt/python/cp31[01234]-cp31[01234]/bin; do
1515
"${PYBIN}/pip" install -r requirements.txt -r requirements-dev.txt
1616
"${PYBIN}/maturin" build -i "${PYBIN}/python" --release --strip
1717
done
@@ -22,7 +22,7 @@ for wheel in target/wheels/*.whl; do
2222
done
2323

2424
# test wheels
25-
for PYBIN in /opt/python/cp3[89]*/bin /opt/python/cp31[0123]-cp31[0123]/bin; do
25+
for PYBIN in /opt/python/cp3[89]*/bin /opt/python/cp31[01234]-cp31[01234]/bin; do
2626
"${PYBIN}/pip" install kmedoids --no-index --find-links wheelhouse
2727
cd tests && "${PYBIN}/python" -m unittest discover && cd ..
2828
done

.github/workflows/wheels.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787
runs-on: macos-latest
8888
strategy:
8989
matrix:
90-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
90+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
9191
steps:
9292
- uses: actions/checkout@v4
9393
- uses: actions-rs/toolchain@v1
@@ -115,7 +115,7 @@ jobs:
115115
runs-on: windows-latest
116116
strategy:
117117
matrix:
118-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
118+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
119119
steps:
120120
- uses: actions/checkout@v4
121121
- uses: actions-rs/toolchain@v1

0 commit comments

Comments
 (0)