diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 81033507..fdd94db7 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,15 +1,15 @@ repos: - repo: https://github.com/Quantco/pre-commit-mirrors-ruff - rev: 0.1.3 + rev: 0.1.6 hooks: - id: ruff-conda - id: ruff-format-conda - repo: https://github.com/Quantco/pre-commit-mirrors-mypy - rev: "1.6.1" + rev: "1.7.1" hooks: - id: mypy-conda - repo: https://github.com/Quantco/pre-commit-mirrors-cython-lint - rev: 0.15.0 + rev: 0.16.0 hooks: - id: cython-lint-conda args: [--no-pycodestyle] diff --git a/build_tools/prepare_macos_wheel.sh b/build_tools/prepare_macos_wheel.sh index 3a7949b4..9b3fab1a 100644 --- a/build_tools/prepare_macos_wheel.sh +++ b/build_tools/prepare_macos_wheel.sh @@ -8,4 +8,4 @@ else export CONDA_SUBDIR="osx-64" fi -/Users/runner/micromamba-bin/micromamba create -y -p $CONDA/envs/build -c conda-forge jemalloc-local xsimd llvm-openmp +/Users/runner/micromamba-bin/micromamba create -y -p $CONDA/envs/build -c conda-forge jemalloc-local "xsimd<11|>12.1" llvm-openmp diff --git a/conda.recipe/meta.yaml b/conda.recipe/meta.yaml index b2a77971..8a3d8a1c 100644 --- a/conda.recipe/meta.yaml +++ b/conda.recipe/meta.yaml @@ -32,7 +32,7 @@ requirements: - numpy - pip - setuptools_scm - - xsimd + - xsimd <11|>12.1 run: - python - {{ pin_compatible('numpy') }} diff --git a/environment-win.yml b/environment-win.yml index 0fd73327..e60e4151 100644 --- a/environment-win.yml +++ b/environment-win.yml @@ -23,7 +23,7 @@ dependencies: - make - mako - mkl-include - - xsimd + - xsimd <11|>12.1 # documentation dev - jupyterlab diff --git a/environment.yml b/environment.yml index 28d45ac8..8ac5c887 100644 --- a/environment.yml +++ b/environment.yml @@ -22,7 +22,7 @@ dependencies: - jemalloc-local - make - mako - - xsimd + - xsimd <11|>12.1 # documentation dev - jupyterlab diff --git a/pyproject.toml b/pyproject.toml index 48e72167..2927cdf7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -51,7 +51,7 @@ before-build = [ ] [tool.cibuildwheel.macos.environment] -LDFLAGS="-Wl,-rpath,$CONDA/envs/build/lib -L$CONDA/envs/build/lib" +LDFLAGS="-Wl,-rpath,$CONDA/envs/build/lib -L$CONDA/envs/build/lib -headerpad_max_install_names" CFLAGS="-I$CONDA/envs/build/include" CXXFLAGS="-I$CONDA/envs/build/include" CXX="/usr/bin/clang++" @@ -60,7 +60,7 @@ JE_INSTALL_SUFFIX="local" [tool.cibuildwheel.windows] before-all = [ - "C:\\Miniconda\\condabin\\conda install -c conda-forge xsimd", + "C:\\Miniconda\\condabin\\conda install -c conda-forge \"xsimd<11\"", ] [tool.cibuildwheel.windows.environment] @@ -69,13 +69,13 @@ INCLUDE="C:\\\\Miniconda\\\\Library\\\\include" [tool.cibuildwheel.linux] before-all = [ "cd ~/", - "git clone --branch 5.2.1 https://github.com/jemalloc/jemalloc.git", + "git clone --branch 5.3.0 https://github.com/jemalloc/jemalloc.git", "cd jemalloc", "./autogen.sh --disable-cxx --with-jemalloc-prefix=local --with-install-suffix=local --disable-tls --disable-initial-exec-tls", "make", "make install_bin install_include install_lib", "cd ~/", - "git clone --branch 7.6.0 https://github.com/xtensor-stack/xsimd.git", + "git clone --branch 12.1.1 https://github.com/xtensor-stack/xsimd.git", "cd xsimd", "mkdir build", "cd build",