Skip to content

Commit

Permalink
remove numpy version constraint
Browse files Browse the repository at this point in the history
  • Loading branch information
hczhai committed Sep 15, 2023
1 parent 1687309 commit 9a42432
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/actions/build-wheel/entrypoint.sh
Expand Up @@ -28,7 +28,7 @@ sed -i "/DPYTHON_EXECUTABLE/a \ '-DPYTHON_EXECUTABLE=${PY_EXE}',"

ls -l /opt/python
/opt/python/"${PY_VER}"/bin/pip install --upgrade --no-cache-dir pip
/opt/python/"${PY_VER}"/bin/pip install --no-cache-dir mkl==2021.4 mkl-include intel-openmp 'numpy<1.23.0' psutil 'cmake>=3.19' pybind11==2.10.1
/opt/python/"${PY_VER}"/bin/pip install --no-cache-dir mkl==2021.4 mkl-include intel-openmp numpy psutil 'cmake>=3.19' pybind11==2.10.1
$(cat $(which auditwheel) | head -1 | awk -F'!' '{print $2}') -m pip install auditwheel==5.1.2

sed -i '/new_soname = src_name/a \ if any(x in src_name for x in ["libmkl_avx2", "libmkl_avx512"]): new_soname = src_name' \
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Expand Up @@ -45,7 +45,7 @@ jobs:
run: |
export PYT=$(which python)
python -m pip install pip build twine pytest --upgrade
python -m pip install mkl==2021.4 mkl-include intel-openmp 'numpy<1.23.0' psutil 'cmake>=3.19' pybind11==2.10.1
python -m pip install mkl==2021.4 mkl-include intel-openmp numpy psutil 'cmake>=3.19' pybind11==2.10.1
- name: install requirements (linux / mpi)
if: matrix.os == 'ubuntu-latest'
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -93,7 +93,7 @@ def build_extensions(self):
install_requires=[
"mkl==2021.4",
"mkl-include",
"numpy<1.23.0",
"numpy",
"psutil",
"pybind11<=2.10.1",
"intel-openmp",
Expand Down

0 comments on commit 9a42432

Please sign in to comment.