Skip to content

Commit 231a013

Browse files
[7.10] Add Python 3.9 to CI
Co-authored-by: Seth Michael Larson <seth.larson@elastic.co>
1 parent cf39af3 commit 231a013

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.ci/test-matrix.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ PYTHON_VERSION:
1212
- 3.6
1313
- 3.7
1414
- 3.8
15+
- 3.9
1516

1617
PYTHON_CONNECTION_CLASS:
1718
- Urllib3HttpConnection

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
strategy:
6161
fail-fast: false
6262
matrix:
63-
python-version: [2.7, 3.5, 3.6, 3.7, 3.8]
63+
python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9]
6464

6565
steps:
6666
- name: Checkout Repository

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
)
2828

2929

30-
@nox.session(python=["2.7", "3.4", "3.5", "3.6", "3.7", "3.8"])
30+
@nox.session(python=["2.7", "3.4", "3.5", "3.6", "3.7", "3.8", "3.9"])
3131
def test(session):
3232
session.install(".")
3333
session.install("-r", "dev-requirements.txt")

0 commit comments

Comments
 (0)