Skip to content

Commit 71c1ca8

Browse files
author
Scott Sanderson
committed
BLD: Try adding 3.8 support.
1 parent 06b38b5 commit 71c1ca8

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@ jobs:
4343
python-version: 3.6
4444
- name: py37
4545
python-version: 3.7
46+
- name: py38
47+
python-version: 3.8
4648

4749
steps:
4850
- name: Dump Matrix Config

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,10 @@ def install_requires():
4040
'License :: OSI Approved :: Apache Software License',
4141
'Natural Language :: English',
4242
'Programming Language :: Python :: 2.7',
43-
'Programming Language :: Python :: 3.4',
4443
'Programming Language :: Python :: 3.5',
44+
'Programming Language :: Python :: 3.6',
45+
'Programming Language :: Python :: 3.7',
46+
'Programming Language :: Python :: 3.8',
4547
'Topic :: Software Development :: Pre-processors',
4648
],
4749
url='https://github.com/ssanderson/interface',

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist=py{27,35,36,37}
2+
envlist=py{27,35,36,37,38}
33
skip_missing_interpreters=true
44

55
[pep8]

0 commit comments

Comments
 (0)