Skip to content

Commit 13daef3

Browse files
committed
Bump minimum declared Python version
The previously added CI revealed that we really don't support 3.9
1 parent b1b2878 commit 13daef3

File tree

3 files changed

+26
-149
lines changed

3 files changed

+26
-149
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
matrix:
1515
# Only test a subset of python versions, to limit compute
16-
python: [python3.9, python3.11, python3.13]
16+
python: [python3.10, python3.11, python3.13]
1717
runs-on: ubuntu-latest
1818
steps:
1919
- uses: actions/checkout@v4
@@ -28,7 +28,7 @@ jobs:
2828
matrix:
2929
os: [ubuntu-latest, macos-latest, windows-latest]
3030
# Only test a subset of python versions, to limit compute
31-
python: [python3.9, python3.11, python3.13]
31+
python: [python3.10, python3.11, python3.13]
3232
runs-on: ${{ matrix.os }}
3333
steps:
3434
- uses: actions/checkout@v4

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "obelisk-py"
33
description = "The one Obelisk client to rule them all"
44
readme = "README.md"
5-
requires-python = ">=3.9,<3.14"
5+
requires-python = ">=3.10,<3.14"
66
dependencies = [
77
"ruff>=0.9.6",
88
"httpx>=0.28.1",

0 commit comments

Comments
 (0)