Skip to content

Commit 6499daf

Browse files
committed
remove 3.8 and 3.9 from testing
1 parent 7977e15 commit 6499daf

File tree

4 files changed

+3
-23
lines changed

4 files changed

+3
-23
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,6 @@ jobs:
5555
# NOTE: We need to use full Python version as part of Python deps cache key otherwise
5656
# setup virtualenv step will fail.
5757
python:
58-
- {version-short: '3.8', version: '3.8.18'}
59-
- {version-short: '3.9', version: '3.9.21'}
6058
- {version-short: '3.10', version: '3.10.16'}
6159
- {version-short: '3.11', version: '3.11.11'}
6260
make:
@@ -117,7 +115,7 @@ jobs:
117115
fail-fast: false
118116
matrix:
119117
python:
120-
- {version-short: '3.8', version: '3.8.18'}
118+
- {version-short: '3.10', version: '3.10.01'}
121119
services:
122120
mongo:
123121
image: mongo:7.0
@@ -272,8 +270,6 @@ jobs:
272270
# NOTE: To speed the CI run, we split unit and integration tests into multiple jobs where
273271
# each job runs subset of tests.
274272
python:
275-
- {version-short: '3.8', version: '3.8.18'}
276-
- {version-short: '3.9', version: '3.9.21'}
277273
- {version-short: '3.10', version: '3.10.16'}
278274
- {version-short: '3.11', version: '3.11.11'}
279275
make:
@@ -408,7 +404,7 @@ jobs:
408404
# NOTE: We only generate and submit coverage report for master and version branches and
409405
# only when the build succeeds (default on GitHub Actions, this was not the case on Travis
410406
# so we had to explicitly check success)
411-
if: "${{ success() && (env.ENABLE_COVERAGE == 'yes') && (env.PYTHON_VERSION_SHORT == '3.8')}}"
407+
if: "${{ success() && (env.ENABLE_COVERAGE == 'yes') && (env.PYTHON_VERSION_SHORT == '3.10')}}"
412408
run: |
413409
./scripts/ci/submit-codecov-coverage.sh
414410
env:
@@ -427,8 +423,6 @@ jobs:
427423
# NOTE: To speed-up the CI run, we split unit and integration tests into multiple jobs where
428424
# each job runs subset of tests.
429425
python:
430-
- {version-short: '3.8', version: '3.8.18'}
431-
- {version-short: '3.9', version: '3.9.21'}
432426
- {version-short: '3.10', version: '3.10.16'}
433427
- {version-short: '3.11', version: '3.11.11'}
434428
make:
@@ -577,7 +571,7 @@ jobs:
577571
578572
- name: Codecov
579573
# NOTE: We only generate and submit coverage report for master and version branches and only when the build succeeds (default on GitHub Actions, this was not the case on Travis so we had to explicitly check success)
580-
if: "${{ success() && (env.ENABLE_COVERAGE == 'yes') && (env.TASK == 'ci-integration') && (env.PYTHON_VERSION_SHORT == '3.8')}}"
574+
if: "${{ success() && (env.ENABLE_COVERAGE == 'yes') && (env.TASK == 'ci-integration') && (env.PYTHON_VERSION_SHORT == '3.10')}}"
581575
run: |
582576
./scripts/ci/submit-codecov-coverage.sh
583577
env:

.github/workflows/microbenchmarks.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,6 @@ jobs:
4444
# NOTE: We need to use full Python version as part of Python deps cache key otherwise
4545
# setup virtualenv step will fail.
4646
python:
47-
- {version-short: '3.8', version: '3.8.18'}
48-
- {version-short: '3.9', version: '3.9.21'}
4947
- {version-short: '3.10', version: '3.10.16'}
5048
- {version-short: '3.11', version: '3.11.11'}
5149
make:

.github/workflows/orquesta-integration-tests.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,6 @@ jobs:
5555
# NOTE: We need to use full Python version as part of Python deps cache key otherwise
5656
# setup virtualenv step will fail.
5757
python:
58-
- {version-short: '3.8', version: '3.8.18'}
59-
- {version-short: '3.9', version: '3.9.21'}
6058
- {version-short: '3.10', version: '3.10.16'}
6159
- {version-short: '3.11', version: '3.11.11'}
6260
make:

.github/workflows/test.yaml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -128,8 +128,6 @@ jobs:
128128
# NOTE: We need to use full Python version as part of Python deps cache key otherwise
129129
# setup virtualenv step will fail.
130130
python:
131-
- {version-short: '3.8', version: '3.8.18'}
132-
- {version-short: '3.9', version: '3.9.21'}
133131
- {version-short: '3.10', version: '3.10.16'}
134132
- {version-short: '3.11', version: '3.11.11'}
135133
shard:
@@ -225,8 +223,6 @@ jobs:
225223
# NOTE: We need to use full Python version as part of Python deps cache key otherwise
226224
# setup virtualenv step will fail.
227225
python:
228-
- {version-short: '3.8', version: '3.8.18'}
229-
- {version-short: '3.9', version: '3.9.21'}
230226
- {version-short: '3.10', version: '3.10.16'}
231227
- {version-short: '3.11', version: '3.11.11'}
232228

@@ -314,8 +310,6 @@ jobs:
314310
# NOTE: We need to use full Python version as part of Python deps cache key otherwise
315311
# setup virtualenv step will fail.
316312
python:
317-
- {version-short: '3.8', version: '3.8.18'}
318-
- {version-short: '3.9', version: '3.9.21'}
319313
- {version-short: '3.10', version: '3.10.16'}
320314
- {version-short: '3.11', version: '3.11.11'}
321315

@@ -435,8 +429,6 @@ jobs:
435429
# NOTE: We need to use full Python version as part of Python deps cache key otherwise
436430
# setup virtualenv step will fail.
437431
python:
438-
- {version-short: '3.8', version: '3.8.18'}
439-
- {version-short: '3.9', version: '3.9.21'}
440432
- {version-short: '3.10', version: '3.10.16'}
441433
- {version-short: '3.11', version: '3.11.11'}
442434

@@ -555,8 +547,6 @@ jobs:
555547
# NOTE: We need to use full Python version as part of Python deps cache key otherwise
556548
# setup virtualenv step will fail.
557549
python:
558-
- {version-short: '3.8', version: '3.8.18'}
559-
- {version-short: '3.9', version: '3.9.21'}
560550
- {version-short: '3.10', version: '3.10.16'}
561551
- {version-short: '3.11', version: '3.11.11'}
562552

0 commit comments

Comments
 (0)