From c8d5fdea38e11d365f2ef45ad871d844ed6a2fc3 Mon Sep 17 00:00:00 2001 From: Michael Waskom Date: Sun, 18 Feb 2024 12:21:12 -0500 Subject: [PATCH] Test on nightly numpy --- .github/workflows/ci.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 11ab24f978..9580e4d62b 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -32,6 +32,7 @@ jobs: - name: Install seaborn run: | pip install --upgrade pip + pip install --pre --upgrade --timeout=60 --extra-index https://pypi.anaconda.org/scipy-wheels-nightly/simple numpy pip install .[stats,docs] - name: Install pandoc @@ -57,6 +58,7 @@ jobs: runs-on: ubuntu-latest strategy: + fail-fast: false matrix: python: ["3.8", "3.9", "3.10", "3.11", "3.12"] install: [full] @@ -82,6 +84,7 @@ jobs: - name: Install seaborn run: | pip install --upgrade pip wheel + pip install --pre --upgrade --timeout=60 --extra-index https://pypi.anaconda.org/scipy-wheels-nightly/simple numpy if [[ ${{matrix.install}} == 'full' ]]; then EXTRAS=',stats'; fi if [[ ${{matrix.deps }} == 'pinned' ]]; then DEPS='-r ci/deps_pinned.txt'; fi pip install .[dev$EXTRAS] $DEPS