From bc17947347123ec8ba9838fdd841f337199bba3d Mon Sep 17 00:00:00 2001 From: Greg Lucas Date: Mon, 26 Jun 2023 17:31:21 -0600 Subject: [PATCH] CI: Add pre-release installs to upcoming tests --- .github/workflows/tests.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 438bf9708162..a1e11bffedb1 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -189,6 +189,12 @@ jobs: # possible. python -m pip install --upgrade pip setuptools wheel + # Install pre-release versions during our weekly upcoming dependency tests. + if [[ "${{ github.event_name == 'schedule' && \ + matrix.name-suffix != '(Minimum Versions)' }}' ]]; then + PRE="--pre" + fi + # Install dependencies from PyPI. python -m pip install --upgrade $PRE \ 'contourpy>=1.0.1' cycler fonttools kiwisolver importlib_resources \