From 70cd33274652afb3b679a31bfa3b778f25611962 Mon Sep 17 00:00:00 2001 From: Carter Peene Date: Wed, 26 Jun 2024 12:28:24 -0700 Subject: [PATCH] remove early install of numpy cython --- .github/workflows/test_build.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/test_build.yml b/.github/workflows/test_build.yml index 92074b6a..c3af26c0 100644 --- a/.github/workflows/test_build.yml +++ b/.github/workflows/test_build.yml @@ -25,14 +25,14 @@ jobs: - name: Set up Python uses: actions/setup-python@v4 - # with: - # python-version: "3.9" + with: + python-version: "3.10" - name: Upgrading pip run: pip install --upgrade pip - - name: Install deps - run: pip install cython numpy + # - name: Install deps + # run: pip install cython numpy - name: Installing package run: pip install -e . @@ -40,11 +40,11 @@ jobs: - name: Printing environment run: pip freeze - - name: Installing packages again (this prevents a weird error) - run: pip install -r requirements.txt + # - name: Installing packages again (this prevents a weird error) + # run: pip install -r requirements.txt - - name: Printing environment - run: pip freeze + # - name: Printing environment + # run: pip freeze - name: Installing build dependencies run: |