Skip to content

Commit 7b971b6

Browse files
authored
Support Python 3.7, drop 3.3 (DataDog#345)
1 parent b39e599 commit 7b971b6

3 files changed

Lines changed: 4 additions & 2 deletions

File tree

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ matrix:
1919
env: TOXENV=py35,flake8
2020
- python: 3.6
2121
env: TOXENV=py36
22+
- python: 3.7
23+
env: TOXENV=py37
2224
- python: pypy
2325
env: TOXENV=pypy
2426
# PyPy isn't yet available on Xenial

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,10 @@ def get_readme_md_contents():
4949
"License :: OSI Approved :: BSD License",
5050
"Operating System :: OS Independent",
5151
"Programming Language :: Python :: 2.7",
52-
"Programming Language :: Python :: 3.3",
5352
"Programming Language :: Python :: 3.4",
5453
"Programming Language :: Python :: 3.5",
5554
"Programming Language :: Python :: 3.6",
55+
"Programming Language :: Python :: 3.7",
5656
"Programming Language :: Python :: Implementation :: PyPy",
5757
]
5858
)

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
minversion = 3.7.0
33
skip_missing_interpreters = true
44
envlist =
5-
py{27,33,34,35,36,py}
5+
py{27,34,35,36,37,py}
66
flake8
77

88
[testenv]

0 commit comments

Comments
 (0)