Skip to content

Commit 30846d4

Browse files
committed
chore: update Python version to 3.9 and add future annotations for type hints
1 parent 22b3733 commit 30846d4

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
- name: Set up Python
7373
uses: actions/setup-python@v5
7474
with:
75-
python-version: "3.x"
75+
python-version: "3.9"
7676

7777
- name: Install uv
7878
uses: astral-sh/setup-uv@v4

tests/integration/conftest.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
"""Fixtures for integration tests."""
22

3+
from __future__ import annotations
4+
35
import os
46
from pathlib import Path
57

0 commit comments

Comments
 (0)