Skip to content

Commit 9c4790f

Browse files
author
Greg Dubicki
committed
Test on Python 3.9, make it officially supported
1 parent 413ab40 commit 9c4790f

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

.github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
strategy:
1111
max-parallel: 5
1212
matrix:
13-
python-version: [3.6, 3.7, 3.8]
13+
python-version: [3.6, 3.7, 3.8, 3.9]
1414

1515
steps:
1616
- uses: actions/checkout@v2

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ PuppetDB.
1515

1616
* PuppetDB 3.0 or newer
1717
* (For support of older PuppetDB versions please check versions < 0.2.0)
18-
* Python 3.6/3.7/3.8
18+
* Python 3.6/3.7/3.8/3.9
1919

2020
## Installation
2121

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ def run_tests(self):
6767
'Programming Language :: Python :: 3.6',
6868
'Programming Language :: Python :: 3.7',
6969
'Programming Language :: Python :: 3.8',
70+
'Programming Language :: Python :: 3.9',
7071
'Topic :: Software Development :: Libraries'
7172
],
7273
)

tox.ini

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[tox]
2-
envlist = py{36,37,38}
2+
envlist = py{36,37,38,39}
33

44
[testenv]
55
deps=
66
-rrequirements-test.txt
77
bandit
88
commands=
99
py.test --cov=pypuppetdb --pep8 -v
10-
py{36,37,38}: bandit -r pypuppetdb
10+
py{36,37,38,39}: bandit -r pypuppetdb

0 commit comments

Comments
 (0)