From e4c0fe6a0e3bd6edd3d6a09491ff125319633869 Mon Sep 17 00:00:00 2001 From: Chris Markiewicz Date: Tue, 27 Dec 2022 10:47:31 -0500 Subject: [PATCH] CI: Disable nipy tests generally, re-add with max numpy --- .github/workflows/tests.yml | 7 +++++++ tools/ci/env.sh | 1 + 2 files changed, 8 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index fc234db19e..d5a94ab940 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -104,6 +104,13 @@ jobs: pip-flags: '' depends: REQUIREMENTS deb-depends: true + nipype-extras: doc,tests,profiler,duecredit,ssh + - os: ubuntu-20.04 + python-version: 3.8 + check: test + pip-flags: '' + depends: NUMPY123 + deb-depends: true nipype-extras: doc,tests,nipy,profiler,duecredit,ssh env: DEPENDS: ${{ matrix.depends }} diff --git a/tools/ci/env.sh b/tools/ci/env.sh index 15e12275b6..84d76bfe8a 100644 --- a/tools/ci/env.sh +++ b/tools/ci/env.sh @@ -4,6 +4,7 @@ SETUP_REQUIRES="pip setuptools>=30.3.0 wheel" REQUIREMENTS="-r requirements.txt" # Minimum versions of minimum requirements MIN_REQUIREMENTS="-r min-requirements.txt" +NUMPY123="numpy<1.24 -r requirements.txt" # Numpy and scipy upload nightly/weekly/intermittent wheels NIGHTLY_WHEELS="https://pypi.anaconda.org/scipy-wheels-nightly/simple"