Drop support for Python 2.7, 3.5, 3.6

Python 2.7 is EOL
Python 3.5 is EOL
Python 3.6 is EOL in 5 days
This commit is contained in:
Ben Lopatin
2021-12-18 14:31:45 -05:00
parent d5b9aacf01
commit 20c1915cbe
2 changed files with 4 additions and 6 deletions
+1 -3
View File
@@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
py_version: [2.7, 3.5, 3.6, 3.7]
py_version: [3.7, 3.8, 3.9, 3.10]
steps:
- uses: actions/checkout@v1
@@ -17,7 +17,5 @@ jobs:
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.py_version }}
- name: Install mock for Python 2.7
run: pip install mock
- name: Run tests
run: python setup.py test