diff --git a/packaging/install_dependencies.sh b/packaging/install_dependencies.sh deleted file mode 100644 index 3c98d18b4..000000000 --- a/packaging/install_dependencies.sh +++ /dev/null @@ -1,37 +0,0 @@ -#!/usr/bin/env bash - -# TODO put all of this inside of a Docker image to save time - -set -xe - -yum -y install \ - git \ - wget \ - make \ - vim \ - curl \ - unzip \ - autoconf \ - automake \ - make \ - openssh-server \ - libtool \ - && yum -y clean all \ - && rm -rf /var/cache - -curl -L -o flex-2.6.4.tar.gz https://github.com/westes/flex/files/981163/flex-2.6.4.tar.gz \ - && tar -xvzf flex-2.6.4.tar.gz \ - && cd flex-2.6.4 \ - && ./configure --prefix=/nmodlwheel/flex \ - && make -j 3 install \ - && cd .. \ - && rm -rf flex-2.6.4.tar.gz flex-2.6.4 -curl -L -o bison-3.7.3.tar.gz https://ftp.gnu.org/gnu/bison/bison-3.7.3.tar.gz \ - && tar -xvzf bison-3.7.3.tar.gz \ - && cd bison-3.7.3 \ - && ./configure --prefix=/nmodlwheel/bison \ - && make -j 3 install \ - && cd .. \ - && rm -rf bison-3.7.3.tar.gz bison-3.7.3 - -set +xe diff --git a/pyproject.toml b/pyproject.toml index dab22c84a..fd8454c6e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -60,7 +60,6 @@ test-extras = ["test"] test-command = [ "bash {package}/packaging/test_wheel.bash python3 {wheel} false", ] -build = ["cp311*"] manylinux-x86_64-image = "docker.io/bluebrain/nmodl:wheel-py12" [tool.cibuildwheel.macos]