8000 Add testing and document support for Python 3.7, 3.8 & PyPy3 · Matt5j/html5lib-python@6c21db2 · GitHub
[go: up one dir, main page]

Skip to content

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 6c21db2

Browse files
jdufresnegsnedders
authored andcommitted
Add testing and document support for Python 3.7, 3.8 & PyPy3
Python 3.7 was released on June 27, 2018. Python 3.8 was released on October 14th, 2019.
1 parent e4de4c9 commit 6c21db2

File tree

4 files changed

+10
-1
lines changed

4 files changed

+10
-1
lines changed

.appveyor.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ environment:
1010
- TOXENV: py35-optional
1111
- TOXENV: py36-base
1212
- TOXENV: py36-optional
13+
- TOXENV: py37-base
14+
- TOXENV: py37-optional
15+
- TOXENV: py38-base
16+
- TOXENV: py38-optional
1317

1418
install:
1519
- git submodule update --init --recursive

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ language: python
22
python:
33
- "pypy3"
44
- "pypy"
5+
- "3.8"
56
- "3.7"
67
- "3.6"
78
- "3.5"

setup.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,10 @@ def default_environment():
6868
'Programming Language :: Python :: 3',
6969
'Programming Language :: Python :: 3.5',
7070
'Programming Language :: Python :: 3.6',
71+
'Programming Language :: Python :: 3.7',
72+
'Programming Language :: Python :: 3.8',
73+
'Programming Language :: Python :: Implementation :: CPython',
74+
'Programming Language :: Python :: Implementation :: PyPy',
7175
'Topic :: Software Development :: Libraries :: Python Modules',
7276
'Topic :: Text Processing :: Markup :: HTML'
7377
]

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = {py27,py35,py36,pypy}-{base,six19,optional}
2+
envlist = py{27,35,36,37,38,py,py3}-{base,six19,optional}
33

44
[testenv]
55
deps =

0 commit comments

Comments
 (0)
0