Skip to content

Commit 19aedc2

Browse files
authored
ci: Stop running tests for python 3.7 (#2810)
Signed-off-by: Achal Shah <achals@gmail.com>
1 parent 7d57724 commit 19aedc2

File tree

6 files changed

+9
-11
lines changed

6 files changed

+9
-11
lines changed

.github/workflows/java_master_only.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ jobs:
9393
architecture: x64
9494
- uses: actions/setup-python@v2
9595
with:
96-
python-version: '3.7'
96+
python-version: '3.8'
9797
architecture: 'x64'
9898
- uses: actions/cache@v2
9999
with:

.github/workflows/java_pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
architecture: x64
7575
- uses: actions/setup-python@v2
7676
with:
77-
python-version: '3.7'
77+
python-version: '3.8'
7878
architecture: 'x64'
7979
- uses: actions/cache@v2
8080
with:

.github/workflows/linter.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ jobs:
66
lint-python:
77
runs-on: [ubuntu-latest]
88
env:
9-
PYTHON: 3.7
9+
PYTHON: 3.8
1010
steps:
1111
- uses: actions/checkout@v2
1212
- name: Setup Python
1313
id: setup-python
1414
uses: actions/setup-python@v2
1515
with:
16-
python-version: "3.7"
16+
python-version: "3.8"
1717
architecture: x64
1818
- name: Setup Go
1919
id: setup-go
@@ -59,7 +59,7 @@ jobs:
5959
id: setup-python
6060
uses: actions/setup-python@v2
6161
with:
62-
python-version: "3.7"
62+
python-version: "3.8"
6363
- name: Upgrade pip version
6464
run: |
6565
pip install --upgrade "pip>=21.3.1,<22.1"

.github/workflows/master_only.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
strategy:
6464
fail-fast: false
6565
matrix:
66-
python-version: [ "3.7", "3.8", "3.9", "3.10" ]
66+
python-version: [ "3.8", "3.9", "3.10" ]
6767
go-version: [ 1.17.0 ]
6868
os: [ ubuntu-latest ]
6969
env:

.github/workflows/pr_integration_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ jobs:
8484
strategy:
8585
fail-fast: false
8686
matrix:
87-
python-version: [ "3.7" ]
87+
python-version: [ "3.8" ]
8888
os: [ ubuntu-latest ]
8989
env:
9090
OS: ${{ matrix.os }}

.github/workflows/unit_tests.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,9 @@ jobs:
77
strategy:
88
fail-fast: false
99
matrix:
10-
python-version: [ "3.7", "3.8", "3.9", "3.10" ]
10+
python-version: [ "3.8", "3.9", "3.10" ]
1111
os: [ ubuntu-latest, macOS-latest ]
1212
exclude:
13-
- os: macOS-latest
14-
python-version: "3.8"
1513
- os: macOS-latest
1614
python-version: "3.9"
1715
- os: macOS-latest
@@ -85,7 +83,7 @@ jobs:
8583
id: setup-python
8684
uses: actions/setup-python@v2
8785
with:
88-
python-version: "3.7"
86+
python-version: "3.8"
8987
- name: Upgrade pip version
9088
run: |
9189
pip install --upgrade "pip>=22.1,<23"

0 commit comments

Comments
 (0)