Skip to content

Commit b7cbf77

Browse files
committed
ci: remove py 3.10, add 3.14 from test workflow
1 parent 112ef9e commit b7cbf77

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ jobs:
1717
matrix:
1818
# os: ["ubuntu-latest", "windows-latest", "macos-latest"]
1919
os: ["ubuntu-latest"]
20-
python-version: ["3.10", "3.11", "3.12", "3.13"]
20+
python-version: ["3.11", "3.12", "3.13", "3.14"]
2121

2222
steps:
23-
- uses: actions/checkout@v5
23+
- uses: actions/checkout@v6
2424

2525
- name: Set up Python ${{ matrix.python-version }}
2626
uses: astral-sh/setup-uv@v7
@@ -38,7 +38,7 @@ jobs:
3838
contents: read
3939
packages: write
4040
steps:
41-
- uses: actions/checkout@v5
41+
- uses: actions/checkout@v6
4242

4343
# - name: Log in to GitHub Container Registry
4444
# uses: docker/login-action@v3
@@ -80,7 +80,7 @@ jobs:
8080
if: startsWith(github.ref, 'refs/tags/')
8181
runs-on: ubuntu-latest
8282
steps:
83-
- uses: actions/checkout@v5
83+
- uses: actions/checkout@v6
8484
with:
8585
fetch-depth: 0
8686

src/sparql_llm/utils.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
logging.getLogger("httpx").setLevel(logging.WARNING)
1919

2020

21+
# Total=False to make all fields optional except those marked as Required
2122
class SparqlEndpointLinks(TypedDict, total=False):
2223
"""A dictionary to store links and filepaths about a SPARQL endpoint."""
2324

0 commit comments

Comments
 (0)