Skip to content
This repository was archived by the owner on Sep 17, 2025. It is now read-only.

Commit c2d8de9

Browse files
authored
Add newer python 3 versions (#1048)
1 parent 6a0ae18 commit c2d8de9

File tree

28 files changed

+63
-9
lines changed

28 files changed

+63
-9
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,13 @@ jobs:
1818
py35: 3.5
1919
py36: 3.6
2020
py37: 3.7
21+
py38: 3.8
22+
py39: 3.9
2123
strategy:
2224
# ensures the entire test matrix is run, even if one permutation fails
2325
fail-fast: false
2426
matrix:
25-
python-version: [py27, py35, py36, py37]
27+
python-version: [py27, py35, py36, py37, py38, py39]
2628
steps:
2729
- name: Checkout code
2830
uses: actions/checkout@v2

context/opencensus-context/setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@
3434
'Programming Language :: Python :: 3.5',
3535
'Programming Language :: Python :: 3.6',
3636
'Programming Language :: Python :: 3.7',
37+
'Programming Language :: Python :: 3.8',
38+
'Programming Language :: Python :: 3.9',
3739
],
3840
description='OpenCensus Runtime Context',
3941
include_package_data=True,

contrib/opencensus-correlation/setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@
3434
'Programming Language :: Python :: 3.5',
3535
'Programming Language :: Python :: 3.6',
3636
'Programming Language :: Python :: 3.7',
37+
'Programming Language :: Python :: 3.8',
38+
'Programming Language :: Python :: 3.9',
3739
],
3840
description='W3C Correlation Context',
3941
include_package_data=True,

contrib/opencensus-ext-azure/setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@
3434
'Programming Language :: Python :: 3.5',
3535
'Programming Language :: Python :: 3.6',
3636
'Programming Language :: Python :: 3.7',
37+
'Programming Language :: Python :: 3.8',
38+
'Programming Language :: Python :: 3.9',
3739
],
3840
description='OpenCensus Azure Monitor Exporter',
3941
include_package_data=True,

contrib/opencensus-ext-datadog/setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@
3434
'Programming Language :: Python :: 3.5',
3535
'Programming Language :: Python :: 3.6',
3636
'Programming Language :: Python :: 3.7',
37+
'Programming Language :: Python :: 3.8',
38+
'Programming Language :: Python :: 3.9',
3739
],
3840
description='OpenCensus Datadog exporter',
3941
include_package_data=True,

contrib/opencensus-ext-dbapi/setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@
3434
'Programming Language :: Python :: 3.5',
3535
'Programming Language :: Python :: 3.6',
3636
'Programming Language :: Python :: 3.7',
37+
'Programming Language :: Python :: 3.8',
38+
'Programming Language :: Python :: 3.9',
3739
],
3840
description='OpenCensus Database API Integration',
3941
include_package_data=True,

contrib/opencensus-ext-django/setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@
3838
'Programming Language :: Python :: 3.5',
3939
'Programming Language :: Python :: 3.6',
4040
'Programming Language :: Python :: 3.7',
41+
'Programming Language :: Python :: 3.8',
42+
'Programming Language :: Python :: 3.9',
4143
],
4244
description='OpenCensus Django Integration',
4345
include_package_data=True,

contrib/opencensus-ext-flask/setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@
3434
'Programming Language :: Python :: 3.5',
3535
'Programming Language :: Python :: 3.6',
3636
'Programming Language :: Python :: 3.7',
37+
'Programming Language :: Python :: 3.8',
38+
'Programming Language :: Python :: 3.9',
3739
],
3840
description='OpenCensus Flask Integration',
3941
include_package_data=True,

contrib/opencensus-ext-gevent/setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@
3434
'Programming Language :: Python :: 3.5',
3535
'Programming Language :: Python :: 3.6',
3636
'Programming Language :: Python :: 3.7',
37+
'Programming Language :: Python :: 3.8',
38+
'Programming Language :: Python :: 3.9',
3739
],
3840
description='OpenCensus gevent compatibility helper',
3941
include_package_data=True,

contrib/opencensus-ext-google-cloud-clientlibs/setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@
3434
'Programming Language :: Python :: 3.5',
3535
'Programming Language :: Python :: 3.6',
3636
'Programming Language :: Python :: 3.7',
37+
'Programming Language :: Python :: 3.8',
38+
'Programming Language :: Python :: 3.9',
3739
],
3840
description='OpenCensus Google Cloud Client Libraries Integration',
3941
include_package_data=True,

0 commit comments

Comments
 (0)