Skip to content

Commit d54ce2b

Browse files
committed
CI: Add software testing for Python 3.8 and 3.9
1 parent 21f0d51 commit d54ce2b

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

.github/workflows/influxdb.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,11 @@ jobs:
4040
os: ["ubuntu-latest"]
4141
# TODO: yarl, dependency of influxio, is currently not available on Python 3.12.
4242
# https://github.com/aio-libs/yarl/pull/942
43-
python-version: ["3.8", "3.11"]
43+
python-version: [
44+
"3.8",
45+
"3.9",
46+
"3.11",
47+
]
4448
influxdb-version: ["2.6", "2.7"]
4549

4650
env:

.github/workflows/main.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,11 @@ jobs:
2828
fail-fast: false
2929
matrix:
3030
os: ["ubuntu-latest"]
31-
python-version: ["3.8", "3.12"]
31+
python-version: [
32+
"3.8",
33+
"3.9",
34+
"3.12",
35+
]
3236

3337
env:
3438
OS: ${{ matrix.os }}

.github/workflows/mongodb.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,11 @@ jobs:
3838
fail-fast: false
3939
matrix:
4040
os: ["ubuntu-latest"]
41-
python-version: ["3.8", "3.11"]
41+
python-version: [
42+
"3.8",
43+
"3.9",
44+
"3.11",
45+
]
4246
mongodb-version: ["3", "4", "5", "6", "7"]
4347

4448
env:

0 commit comments

Comments
 (0)