diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-05-04 10:22:10 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-05-04 10:22:10 +0300 |
commit | 3e424b5cd0a940fcad5647b2cec9515491d5f06f (patch) | |
tree | 13ced144b52ad652c7ddc7f0068fa7bd34bd9ca1 /.github/workflows/test.yml | |
parent | workflows/test: linting (diff) | |
download | sorting-algorithms-3e424b5cd0a940fcad5647b2cec9515491d5f06f.tar.gz sorting-algorithms-3e424b5cd0a940fcad5647b2cec9515491d5f06f.zip |
merge constraints.txt back to requirements.txt
I'm pretty sure it didn't work before w/ Python 3.4, but here we go.
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/test.yml | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index afe3fc7..36311d7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -23,8 +23,6 @@ jobs: with: python-version: '${{ matrix.python-version }}' - name: Install dependencies - run: | - pip install -r constraints.txt - pip install -r requirements.txt + run: pip install -r requirements.txt - name: Run tests run: ./.ci/plot.sh |