Drop to python3.6 as lowest supported version

This commit is contained in:
Vladan Popovic 2020-09-07 14:57:05 +02:00
parent e6933e227d
commit c4400ed700
4 changed files with 4 additions and 4 deletions

View file

@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python: [3.8]
python: [3.6]
steps:
- uses: actions/checkout@v2

View file

@ -14,7 +14,7 @@ jobs:
- name: Install Python
uses: actions/setup-python@v1
with:
python-version: 3.8
python-version: 3.6
- name: Install Tox and any other packages
run: pip install tox
- name: Build Sphinx docs

View file

@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python: [3.8]
python: [3.6, 3.7, 3.8]
steps:
- uses: actions/checkout@v2