From 240f4b0f94b8e00f1bb29c03ef14a7520bc90e9d Mon Sep 17 00:00:00 2001 From: Nick Budak Date: Wed, 17 Apr 2024 21:10:59 -0700 Subject: [PATCH] Don't use setup.py develop anymore --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dbd786b..496cb85 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,7 +32,7 @@ jobs: restore-keys: | ${{ runner.os }}-pip- - run: pip install -r ci-requirements.txt - - run: python setup.py develop + - run: python -m pip install --editable . - run: python -m unittest coverage: @@ -51,6 +51,6 @@ jobs: restore-keys: | ${{ runner.os }}-pip- - run: pip install -r ci-requirements.txt - - run: python setup.py develop + - run: python -m pip install --editable . - run: coverage run -m unittest - uses: codecov/codecov-action@v1