Skip to content

Commit 26d49d9

Browse files
authored
ci: Stop testing python 3.8 (#225)
This is so that CI can pass for #210... eventually. Crawlee does not support 3.8.
1 parent dd3d84d commit 26d49d9

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/check_version_availability.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Set up Python
2121
uses: actions/setup-python@v5
2222
with:
23-
python-version: "3.8"
23+
python-version: "3.9"
2424

2525
- name: Install dependencies
2626
run: make install-dev

.github/workflows/docs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
- name: Set up Python
4949
uses: actions/setup-python@v5
5050
with:
51-
python-version: 3.8
51+
python-version: 3.9
5252

5353
- name: Install Python dependencies
5454
run: make install-dev

.github/workflows/integration_tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
matrix:
1919
# Run integration tests only on the oldest and newest supported Python versions,
2020
# as these tests are time-consuming and these versions are the most likely to encounter issues.
21-
python-version: ["3.8", "3.12"]
21+
python-version: ["3.9", "3.12"]
2222
max-parallel: 1 # no concurrency on this level, to not overshoot the test user limits
2323

2424
steps:

.github/workflows/lint_and_type_checks.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
12+
python-version: ["3.9", "3.10", "3.11", "3.12"]
1313

1414
steps:
1515
# We need to check out the head commit in case of PRs,

.github/workflows/unit_tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
matrix:
1111
os: [ubuntu-latest, windows-latest]
12-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
12+
python-version: ["3.9", "3.10", "3.11", "3.12"]
1313
runs-on: ${{ matrix.os }}
1414

1515
steps:

0 commit comments

Comments
 (0)