From 7cbf954bf42f02ab81a7dc0f81db39449f9e4382 Mon Sep 17 00:00:00 2001 From: Daniel King Date: Sat, 14 Sep 2024 18:37:29 -0700 Subject: [PATCH] old scipy workflow --- .github/workflows/old_scipy.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/old_scipy.yaml diff --git a/.github/workflows/old_scipy.yaml b/.github/workflows/old_scipy.yaml new file mode 100644 index 0000000..040afed --- /dev/null +++ b/.github/workflows/old_scipy.yaml @@ -0,0 +1,18 @@ +name: CI (old scipy) + +on: + pull_request: + branches: + - main + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v1 + - name: Build and test with Docker using an older version of scipy + run: | + docker build --tag scispacy . + docker run --rm scispacy pip install 'scipy<1.11' \ + && pytest tests/ \ No newline at end of file