Skip to content

Commit a2c3850

Browse files
committed
revert to previous state
1 parent 01b847b commit a2c3850

2 files changed

Lines changed: 8 additions & 6 deletions

File tree

.github/workflows/build.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
python-version: [3.4, 3.5, 3.6.8]
15+
python-version: [3.4, 3.5, 3.6]
1616

1717
steps:
1818
- uses: actions/checkout@v2
@@ -22,8 +22,9 @@ jobs:
2222
python-version: ${{ matrix.python-version }}
2323
- name: Install dependencies
2424
run: |
25+
pip install --upgrade pip
2526
pip install virtualenv==20.0.1
26-
pip install tox
27+
pip install tox tox-gh-actions
2728
- name: Test with tox
2829
run: |
2930
tox

tox.ini

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,11 @@ deps =
1515
flake8-quotes==0.14.0
1616
usedevelop=True
1717

18-
[tox:travis]
19-
3.4 = py34
20-
3.5 = py35
21-
3.6.8 = py36
18+
[gh-actions]
19+
python =
20+
3.4: py34
21+
3.5: py35
22+
3.6: py36
2223

2324
[flake8]
2425
max-complexity = 5

0 commit comments

Comments
 (0)