From e35c6e9dc24e19778efdc3748431833957f6cdc3 Mon Sep 17 00:00:00 2001 From: Pratyush Singh Date: Thu, 12 Oct 2023 16:19:29 -0400 Subject: [PATCH] fix: update numpy to 1.21.0 and add numpy 1.26 for newer versions of python (#64) * fix: update numpy to 1.21.0 - include numpy 1.26 for newer versions of python * chore: add python 3.10 to the python-version testing matrix * chore: increase timeout for executeprocessor * chore: change timeout back to original --------- Co-authored-by: Pratyush Singh Co-authored-by: Pratyush Singh --- .github/workflows/ci.yaml | 2 +- requirements.txt | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 2d79983..e9114d2 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.9"] + python-version: ["3.9", "3.10"] steps: - uses: actions/checkout@v3 diff --git a/requirements.txt b/requirements.txt index 3872d9f..960c872 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,6 @@ scikit-learn~=1.2.2 -numpy<=1.20.0 +numpy~=1.21.0 ; python_version <= "3.9" +numpy~=1.26.0 ; python_version > "3.9" pandas~=1.4.3 tabulate matplotlib