Skip to content

Commit 26630b0

Browse files
authored
Added support for Python 3.7 and 3.8 (#55)
This change introduces the Python versions 3.7 and 3.8 to the continuous integration.
1 parent 416dd47 commit 26630b0

3 files changed

Lines changed: 5 additions & 1 deletion

File tree

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ language: python
22
python:
33
- "3.5"
44
- "3.6"
5+
- "3.7"
6+
- "3.8"
57
install:
68
- pip3 install -e .[dev]
79
- pip3 install coveralls

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@
3636
'License :: OSI Approved :: MIT License',
3737
'Programming Language :: Python :: 3.5',
3838
'Programming Language :: Python :: 3.6',
39+
'Programming Language :: Python :: 3.7',
40+
'Programming Language :: Python :: 3.8'
3941
],
4042
license='License :: OSI Approved :: MIT License',
4143
keywords='object mapping json serialization deserialization graph',

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py35,py36
2+
envlist = py35,py36,py37,py38
33

44
[testenv]
55
deps = .[dev]

0 commit comments

Comments
 (0)