Skip to content

Commit d3a1b6d

Browse files
authored
Merge pull request #36 from veryfi/remove-python3.6
Remove Python 3.6 from tests
2 parents 9401292 + d02d0b5 commit d3a1b6d

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

.github/workflows/release-pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-20.04
1010
strategy:
1111
matrix:
12-
python-version: [3.6]
12+
python-version: [3.7]
1313
steps:
1414
- uses: actions/checkout@v2
1515
- name: Set up Python ${{ matrix.python-version }}

setup.cfg

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ url = https://github.com/veryfi/veryfi-python
88
license = MIT
99
classifiers =
1010
Development Status :: 5 - Production/Stable
11-
Programming Language :: Python :: 3.6
1211
Programming Language :: Python :: 3.7
1312
Programming Language :: Python :: 3.8
1413
Programming Language :: Python :: 3.9

tox.ini

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
[tox]
2-
envlist = py36, py37, py38, py39, report
2+
envlist = py37, py38, py39, report
33
skipsdist = true
44
skip_install = true
5-
basepython = py36
5+
basepython = py37
66

77
[gh-actions]
88
python =
9-
3.6: py36
109
3.7: py37
1110
3.8: py38, report
1211
3.9: py39

0 commit comments

Comments
 (0)