[7.x] Add Python 3.9 to CI

Co-authored-by: Seth Michael Larson <seth.larson@elastic.co>
This commit is contained in:
github-actions[bot]
2020-11-19 13:46:10 -06:00
committed by GitHub
parent 465185d3a0
commit a1cac1aaad
3 changed files with 3 additions and 2 deletions
+1
View File
@@ -12,6 +12,7 @@ PYTHON_VERSION:
- 3.6
- 3.7
- 3.8
- 3.9
PYTHON_CONNECTION_CLASS:
- Urllib3HttpConnection
+1 -1
View File
@@ -60,7 +60,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [2.7, 3.5, 3.6, 3.7, 3.8]
python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9]
steps:
- name: Checkout Repository
+1 -1
View File
@@ -27,7 +27,7 @@ SOURCE_FILES = (
)
@nox.session(python=["2.7", "3.4", "3.5", "3.6", "3.7", "3.8"])
@nox.session(python=["2.7", "3.4", "3.5", "3.6", "3.7", "3.8", "3.9"])
def test(session):
session.install(".")
session.install("-r", "dev-requirements.txt")