Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/workflows/python.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python: [ 2.7, 'pypy3', 3.5, 3.6, 3.7, 3.8, 3.9]
python: [ 3.5, 3.6, 3.7, 3.8, 3.9]
name: Test Python ${{ matrix.python }}
steps:
- uses: actions/checkout@v2
Expand All @@ -20,5 +20,6 @@ jobs:
with:
python-version: ${{ matrix.python }}
- run: |
pip install -r requirements.txt
flake8 . && python setup.py test
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
flake8 . && python setup.py test
Loading