Skip to content

Commit 7497fe9

Browse files
authored
Merge pull request #58 from opsmill/dga/chore-add-python314-nldfy
chore: support Python 3.14
2 parents a3fe4e0 + 149b8b2 commit 7497fe9

3 files changed

Lines changed: 481 additions & 146 deletions

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,18 @@ jobs:
4040
needs: ["files-changed"]
4141
runs-on: ubuntu-latest
4242
timeout-minutes: 5
43+
strategy:
44+
fail-fast: false
45+
matrix:
46+
# Both ends of requires-python, so the supported range stays honest
47+
python-version: ["3.11", "3.14"]
4348
steps:
4449
- uses: actions/checkout@v6
4550
- name: Install uv
4651
uses: astral-sh/setup-uv@v7
4752
with:
4853
version: "0.9.18"
54+
python-version: ${{ matrix.python-version }}
4955
- run: uv sync
5056
- name: Check code formatting
5157
run: |

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.1.0"
44
description = "Infrahub Solution AI DC"
55
readme = "README.md"
66
authors = [{ name = "OpsMill", email = "info@opsmill.com" }]
7-
requires-python = ">=3.11, <3.14"
7+
requires-python = ">=3.11, <3.15"
88
dependencies = [
99
"httpx>=0.28.1",
1010
]

0 commit comments

Comments
 (0)