Skip to content

Commit 18ffe3f

Browse files
Merge pull request #19 from zopefoundation/maurits/check-python-versions
Test on Pyhon 3.7 and 3.8 as well (next to 2.7, 3.5, 3.6).
2 parents a5b3ee2 + 0e62a46 commit 18ffe3f

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
lines changed

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ python:
33
- 2.7
44
- 3.5
55
- 3.6
6+
- 3.7
7+
- 3.8
68
install:
79
- pip install zc.buildout
810
- buildout

CHANGES.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ New features:
1414

1515
Bug fixes:
1616

17-
- *add item here*
17+
- Test on Python 3.7 and 3.8 as well (next to 2.7, 3.5, 3.6). See `PR #19 <https://github.com/zopefoundation/z3c.relationfield/pull/19/>`_.
1818

1919

2020
0.9.0 (2019-09-15)

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ def read(*rnames):
2727
'Programming Language :: Python :: 3',
2828
'Programming Language :: Python :: 3.5',
2929
'Programming Language :: Python :: 3.6',
30+
'Programming Language :: Python :: 3.7',
31+
'Programming Language :: Python :: 3.8',
3032
],
3133
keywords='relation field',
3234
author='Martijn Faassen',

tox.ini

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
[tox]
22
envlist =
33
py27,
4+
py35,
45
py36,
5-
py37
6+
py37,
7+
py38
68

79
[testenv]
810
commands =

0 commit comments

Comments
 (0)