Skip to content
Merged
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
4 changes: 2 additions & 2 deletions etc/build-wheels.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ set -o pipefail
# Python 3.8 is end-of-life as of October 2024 so 3.9 is the earliest version of
# python we use here.

PYTHON_VERSIONS=("3.9" "3.10" "3.11" "3.12")
PYTHON_VERSIONS=("3.9" "3.10" "3.11" "3.12" "3.13")

if ! [[ "$PWD" == *libsemigroups_pybind11 ]] ; then
echo -e "This script must be run in the libsemigroups_pybind11 directory! Aborting!"
Expand All @@ -35,7 +35,7 @@ mkdir -p wheelhouse

for PYTHON_VERSION in "${PYTHON_VERSIONS[@]}"; do
PY="/opt/homebrew/opt/python@$PYTHON_VERSION/bin/python$PYTHON_VERSION"
LIBSEMIGROUPS_PYBIND11_VERSION="$($PY etc/version.py)"
LIBSEMIGROUPS_PYBIND11_VERSION="$($PY -c \"import libsemigroups_pybind11; print(libsemigroups_pybind11.__version__)\")"
MACOSX_VERSION="$($PY etc/mac_os_version.py)"
WHEEL_PY_VERSION=$(echo "cp$PYTHON_VERSION" | sed 's/\.//')
WHEEL_NAME="libsemigroups_pybind11-$LIBSEMIGROUPS_PYBIND11_VERSION-$WHEEL_PY_VERSION-$WHEEL_PY_VERSION-$MACOSX_VERSION.whl"
Expand Down
5 changes: 0 additions & 5 deletions etc/format_doc.sh

This file was deleted.

7 changes: 0 additions & 7 deletions etc/version.py

This file was deleted.