@@ -20,22 +20,23 @@ jobs:
2020 py36 : 3.6
2121 py37 : 3.7
2222 py38 : 3.8
23+ py39 : 3.9
2324 pypy3 : pypy3
2425 runs-on : ${{ matrix.os }}
2526 strategy :
2627 fail-fast : false # ensures the entire test matrix is run, even if one permutation fails
2728 matrix :
28- python-version : [ py35, py36, py37, py38, pypy3 ]
29+ python-version : [ py35, py36, py37, py38, py39, pypy3 ]
2930 package : ["instrumentation", "core", "exporter"]
3031 os : [ ubuntu-latest ]
3132 include :
32- - python-version : py38
33+ - python-version : py39
3334 package : " tracecontext"
3435 os : ubuntu-latest
35- - python-version : py38
36+ - python-version : py39
3637 package : " mypy"
3738 os : ubuntu-latest
38- - python-version : py38
39+ - python-version : py39
3940 package : " mypyinstalled"
4041 os : ubuntu-latest
4142 # py35-instrumentation segfaults on 18.04 so we instead run on 20.04
8586 repository : open-telemetry/opentelemetry-python-contrib
8687 ref : ${{ env.CONTRIB_REPO_SHA }}
8788 path : opentelemetry-python-contrib
88- - name : Set up Python 3.8
89+ - name : Set up Python
8990 uses : actions/setup-python@v2
9091 with :
9192 python-version : 3.8
@@ -106,12 +107,13 @@ jobs:
106107 py36 : 3.6
107108 py37 : 3.7
108109 py38 : 3.8
110+ py39 : 3.9
109111 pypy3 : pypy3
110112 runs-on : ${{ matrix.os }}
111113 strategy :
112114 fail-fast : false # ensures the entire test matrix is run, even if one permutation fails
113115 matrix :
114- python-version : [ py35, py36, py37, py38, pypy3 ]
116+ python-version : [ py35, py36, py37, py38, py39, pypy3 ]
115117 package : ["instrumentation", "exporter"]
116118 os : [ ubuntu-latest ]
117119 include :
@@ -166,10 +168,10 @@ jobs:
166168 with :
167169 repository : open-telemetry/opentelemetry-python
168170 path : opentelemetry-python-core
169- - name : Set up Python 3.8
171+ - name : Set up Python
170172 uses : actions/setup-python@v2
171173 with :
172- python-version : 3.8
174+ python-version : 3.9
173175 - name : Install tox
174176 run : pip install -U tox
175177 - name : Cache tox environment
0 commit comments