Skip to content

Commit 143597d

Browse files
authored
Merge pull request #66 from buildkite/drop-python-3-8
Python 3.8 no longer supported; EOL was 2024-10-07
2 parents cfe0976 + 0fd213d commit 143597d

4 files changed

Lines changed: 49 additions & 429 deletions

File tree

.github/workflows/python.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
16+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1717

1818
env:
1919
BUILDKITE_ANALYTICS_TOKEN: ${{ secrets.BUILDKITE_ANALYTICS_TOKEN }}
@@ -35,7 +35,7 @@ jobs:
3535
runs-on: ubuntu-latest
3636
strategy:
3737
matrix:
38-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
38+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
3939

4040
steps:
4141
- uses: actions/checkout@v4

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
The official Python adapter for [Buildkite Test Engine](https://buildkite.com/platform/test-engine/) which collects information about your tests.
44

5-
**Supported python versions:** >=3.8
5+
**Supported python versions:** >=3.9
66

77
**Supported test frameworks:** pytest.
88

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name = "buildkite-test-collector"
77
version = "1.0.4"
88
description = "Buildkite Test Engine collector"
99
readme = "README.md"
10-
requires-python = ">=3.8"
10+
requires-python = ">=3.9"
1111
license = "MIT"
1212
authors = [{ name = "Buildkite", email = "support@buildkite.com" }]
1313
classifiers = ["License :: OSI Approved :: MIT License", "Framework :: Pytest"]

0 commit comments

Comments
 (0)