From 006497092238a7df46fd76a3a84bb39ec77b619d Mon Sep 17 00:00:00 2001 From: "quant-ranger[bot]" <132915763+quant-ranger[bot]@users.noreply.github.com> Date: Mon, 24 Jul 2023 06:44:08 +0100 Subject: [PATCH 1/3] Pre-commit autoupdate (#283) Co-authored-by: quant-ranger[bot] <132915763+quant-ranger[bot]@users.noreply.github.com> --- .pre-commit-config.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 5a37c63e..150cd678 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,6 +1,6 @@ repos: - repo: https://github.com/Quantco/pre-commit-mirrors-black - rev: 23.3.0 + rev: 23.7.0 hooks: - id: black-conda additional_dependencies: [flake8-docstrings, flake8-rst-docstrings] @@ -33,7 +33,7 @@ repos: additional_dependencies: - python=3.8 - repo: https://github.com/Quantco/pre-commit-mirrors-pyupgrade - rev: 3.7.0 + rev: 3.9.0 hooks: - id: pyupgrade-conda - repo: https://github.com/Quantco/pre-commit-mirrors-cython-lint From 1ba081d8d9fcc367ac54fa12d543a41d8bf2e66a Mon Sep 17 00:00:00 2001 From: "quant-ranger[bot]" <132915763+quant-ranger[bot]@users.noreply.github.com> Date: Mon, 7 Aug 2023 06:56:45 +0100 Subject: [PATCH 2/3] Pre-commit autoupdate (#284) --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 150cd678..d66edb54 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -8,7 +8,7 @@ repos: - --safe - --target-version=py36 - repo: https://github.com/Quantco/pre-commit-mirrors-flake8 - rev: 6.0.0 + rev: 6.1.0 hooks: - id: flake8-conda additional_dependencies: [ From 693b1058633765e467ee61975584ccbb56903e89 Mon Sep 17 00:00:00 2001 From: Jan Tilly Date: Mon, 7 Aug 2023 18:22:51 +0200 Subject: [PATCH 3/3] Use boa to build conda packages. (#285) --- .github/workflows/conda-build-win.yml | 4 ++-- .github/workflows/macos-conda-build.sh | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/conda-build-win.yml b/.github/workflows/conda-build-win.yml index 8528298e..85d01459 100644 --- a/.github/workflows/conda-build-win.yml +++ b/.github/workflows/conda-build-win.yml @@ -30,5 +30,5 @@ jobs: - name: Build conda package shell: pwsh run: | - mamba install -n base -y conda-build - conda build -m .ci_support/${{ matrix.CONDA_BUILD_YML }}.yaml conda.recipe + mamba install -n base -y conda-build boa + conda mambabuild -m .ci_support/${{ matrix.CONDA_BUILD_YML }}.yaml conda.recipe diff --git a/.github/workflows/macos-conda-build.sh b/.github/workflows/macos-conda-build.sh index 1901f4c7..8c9880b9 100755 --- a/.github/workflows/macos-conda-build.sh +++ b/.github/workflows/macos-conda-build.sh @@ -2,7 +2,7 @@ set -exo pipefail -mamba install -y conda-build +mamba install -y conda-build boa # Don't test cross-compiled result (there is no emulation) and use the latest MacOS SDK. if grep -q "osx-arm64" .ci_support/${CONDA_BUILD_YML}.yaml; then @@ -13,4 +13,4 @@ CONDA_BUILD_SYSROOT: - "${CONDA_BUILD_SYSROOT}" EOF fi -conda build -m .ci_support/${CONDA_BUILD_YML}.yaml conda.recipe ${CONDA_BUILD_ARGS:-} +conda mambabuild -m .ci_support/${CONDA_BUILD_YML}.yaml conda.recipe ${CONDA_BUILD_ARGS:-}