Skip to content
This repository was archived by the owner on Mar 26, 2022. It is now read-only.

Commit 740bbc8

Browse files
authored
Merge pull request #266 from noritada/test-with-py38
Add a setting for testing with Python 3.8
2 parents c394271 + 5e77be7 commit 740bbc8

File tree

5 files changed

+5
-4
lines changed

5 files changed

+5
-4
lines changed

.travis.yml

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ python:
55
- "3.5"
66
- "3.6"
77
- "3.7"
8+
- "3.8"
89
install:
910
- python setup.py install
1011
- pip install -r test_reqs.txt

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ stable we will release the first ``1.0`` version and attempt to keep up
1010
to date with changes in ``commonmark.js``.
1111

1212
commonmark.py is tested against the CommonMark spec with Python versions
13-
2.7, 3.5, 3.6, and 3.7.
13+
2.7, 3.5, 3.6, 3.7, and 3.8.
1414

1515
**Current version:** 0.9.1
1616

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def run(self):
2222

2323
tests_require = [
2424
'flake8==3.8.3',
25-
'hypothesis==3.55.3',
25+
'hypothesis==4.24.4',
2626
]
2727

2828

test_reqs.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
flake8==3.8.3
2-
hypothesis==3.23.3
2+
hypothesis==4.24.4

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# and then run "tox" from this directory.
55

66
[tox]
7-
envlist = py{26,27,33,34,35,36,37,py,py3}
7+
envlist = py{26,27,33,34,35,36,37,38,py,py3}
88

99
[testenv]
1010
deps = .[test]

0 commit comments

Comments
 (0)