Skip to content

Commit 99705a8

Browse files
committed
config: add support for newer python releases (py38, py39, py310)
1 parent f63eb0d commit 99705a8

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

setup.py

+3
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@
4141
'Programming Language :: Python :: 3.5',
4242
'Programming Language :: Python :: 3.6',
4343
'Programming Language :: Python :: 3.7',
44+
'Programming Language :: Python :: 3.8',
45+
'Programming Language :: Python :: 3.9',
46+
'Programming Language :: Python :: 3.10',
4447
'Topic :: Software Development :: Libraries :: Python Modules',
4548
'Topic :: System :: Monitoring',
4649
],

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = clean, lint, py27, py34, py35, py36, py37, stats
2+
envlist = clean, lint, py27, py34, py35, py36, py37, py38, py39, py310, stats
33
skip_missing_interpreters = False
44

55
[testenv]

0 commit comments

Comments
 (0)