Skip to content

Commit 1eb038b

Browse files
committed
Stop running CI on Python 3.8
1 parent 1854b2b commit 1eb038b

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ jobs:
3838
test:
3939
runs-on: ubuntu-latest
4040
env:
41-
py38: "3.8"
4241
py39: "3.9"
4342
py310: "3.10"
4443
py311: "3.11"
@@ -51,7 +50,7 @@ jobs:
5150
strategy:
5251
fail-fast: false
5352
matrix:
54-
python-version: [py38, py39, py310, py311, py312, py313]
53+
python-version: [py39, py310, py311, py312, py313]
5554
openai-version: [baseline, latest]
5655
steps:
5756
- uses: actions/checkout@v4
@@ -60,10 +59,10 @@ jobs:
6059
with:
6160
python-version: ${{ env[matrix.python-version] }}
6261
architecture: "x64"
63-
- if: ${{ env[matrix.python-version] == '3.8' || env[matrix.python-version] == '3.9' }}
62+
- if: ${{ env[matrix.python-version] == '3.9' }}
6463
run: pip install -r dev-requirements-3.9.txt
6564
working-directory: ${{ env.working_dir }}
66-
- if: ${{ env[matrix.python-version] != '3.8' && env[matrix.python-version] != '3.9' }}
65+
- if: ${{ env[matrix.python-version] != '3.9' }}
6766
run: pip install -r dev-requirements.txt
6867
working-directory: ${{ env.working_dir }}
6968
- if: ${{ env[matrix.openai-version] }}

0 commit comments

Comments
 (0)