Skip to content

Commit 5606976

Browse files
authored
build: Retire Python 3.7 (#94)
1 parent e9c183f commit 5606976

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.github/workflows/integration-tests-v1.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616
- name: Check out code
1717
uses: actions/checkout@v2
1818

19-
- name: Set up Python 3.7
19+
- name: Set up Python 3.8
2020
uses: actions/setup-python@v5
2121
with:
22-
python-version: 3.7
22+
python-version: 3.8
2323

2424
- name: Install dependencies
2525
run: |

.github/workflows/integration-tests-v2.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616
- name: Check out code
1717
uses: actions/checkout@v2
1818

19-
- name: Set up Python 3.7
19+
- name: Set up Python 3.8
2020
uses: actions/setup-python@v5
2121
with:
22-
python-version: 3.7
22+
python-version: 3.8
2323

2424
- name: Install dependencies
2525
run: |

.github/workflows/nightly-v1.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ jobs:
2222
max-parallel: 2
2323
matrix:
2424
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
25-
python-version: ['3.7', '3.8', '3.9', '3.10']
25+
python-version: ['3.8', '3.9', '3.10', '3.11']
2626
steps:
2727
- name: Check out code
2828
uses: actions/checkout@v2
2929

30-
- name: Set up Python 3.7
30+
- name: Set up Python ${{ matrix.python-version }}
3131
uses: actions/setup-python@v5
3232
with:
3333
python-version: ${{ matrix.python-version }}

.github/workflows/nightly-v2.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ jobs:
2222
max-parallel: 2
2323
matrix:
2424
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
25-
python-version: ['3.7', '3.8', '3.9', '3.10']
25+
python-version: ['3.8', '3.9', '3.10', '3.11']
2626
steps:
2727
- name: Check out code
2828
uses: actions/checkout@v2
2929

30-
- name: Set up Python 3.7
30+
- name: Set up Python ${{ matrix.python-version }}
3131
uses: actions/setup-python@v5
3232
with:
3333
python-version: ${{ matrix.python-version }}

.github/workflows/unit-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ jobs:
2424
with:
2525
ref: ${{ inputs.branch }}
2626

27-
- name: Set up Python 3.7
27+
- name: Set up Python 3.8
2828
uses: actions/setup-python@v5
2929
with:
30-
python-version: 3.7
30+
python-version: 3.8
3131

3232
- name: Install dependencies
3333
run: |

0 commit comments

Comments
 (0)