From d10b1c76313293adf24ff835367017d9ca3ecd4f Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Fri, 3 Mar 2023 10:02:40 +0100 Subject: get rid of requirements.txt It contained duplicate info from pyproject.toml. --- .github/workflows/ci.yml | 4 ++-- requirements.txt | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) delete mode 100644 requirements.txt diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f1555d7..745c1f8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,8 +32,8 @@ jobs: uses: actions/setup-python@v4 with: python-version: '${{ matrix.python-version }}' - - name: Install dependencies - run: pip install -q -r requirements.txt + - name: 'Install package & dependencies' + run: pip install -q -e . - name: Run tests run: ./test/bin/main.sh diff --git a/requirements.txt b/requirements.txt deleted file mode 100644 index 6ccafc3..0000000 --- a/requirements.txt +++ /dev/null @@ -1 +0,0 @@ -matplotlib -- cgit v1.2.3