Add support for Python 3.10

This commit is contained in:
Hugo van Kemenade 2021-11-21 12:29:02 +02:00
parent 6bf417bab5
commit 0fd55a43d2
2 changed files with 2 additions and 1 deletions

View File

@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9]
python-version: ["2.7", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10"]
steps:

View File

@ -141,6 +141,7 @@ setup(
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: System :: Monitoring'
]
)