Skip to content

Commit 0848517

Browse files
authored
Merge branch 'main' into feature/sparql_result_parsing
2 parents f220017 + b800dbc commit 0848517

File tree

8 files changed

+47
-46
lines changed

8 files changed

+47
-46
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ci:
88
repos:
99
- repo: https://github.com/astral-sh/ruff-pre-commit
1010
# WARNING: Ruff version should be the same as in `pyproject.toml`
11-
rev: v0.11.0
11+
rev: v0.13.0
1212
hooks:
1313
- id: ruff
1414
args: ["--fix"]

docker/latest/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM docker.io/library/python:3.13.7-slim@sha256:8220ccec22e88cddd9a541cacd1bf48423bda8cdeb1015249e4b298edf86cdc7
1+
FROM docker.io/library/python:3.13.7-slim@sha256:58c30f5bfaa718b5803a53393190b9c68bd517c44c6c94c1b6c8c172bcfad040
22

33
COPY docker/latest/requirements.txt /var/tmp/build/
44

docker/unstable/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM docker.io/library/python:3.13.7-slim@sha256:8220ccec22e88cddd9a541cacd1bf48423bda8cdeb1015249e4b298edf86cdc7
1+
FROM docker.io/library/python:3.13.7-slim@sha256:58c30f5bfaa718b5803a53393190b9c68bd517c44c6c94c1b6c8c172bcfad040
22

33
# This file is generated from docker:unstable in Taskfile.yml
44
COPY var/requirements.txt /var/tmp/build/

poetry.lock

Lines changed: 38 additions & 37 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ rdfgraphisomorphism = 'rdflib.tools.graphisomorphism:main'
4848
black = "24.10.0"
4949
mypy = "^1.13.0"
5050
lxml-stubs = ">=0.4,<0.6"
51-
pip-tools = "^7.4.1"
51+
pip-tools = "^7.5.0"
5252

5353
[tool.poetry.group.tests.dependencies]
5454
pytest = ">=7.1.3,<9.0.0"
@@ -67,7 +67,7 @@ mkdocs-gen-files = "^0.5.0"
6767
mkdocs-include-markdown-plugin = "^7.1.7"
6868

6969
[tool.poetry.group.lint.dependencies]
70-
ruff = "0.8.6"
70+
ruff = "0.13.0"
7171

7272
[project.optional-dependencies]
7373
berkeleydb = ["berkeleydb >18.1.0"]

test/test_graph/test_graph_http.py

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

6767

6868
class ContentNegotiationHandler(BaseHTTPRequestHandler):
69-
def do_GET(self): # noqa: N802
69+
def do_GET(self):
7070
self.send_response(200, "OK")
7171
# fun fun fun parsing accept header.
7272

test/test_store/test_store_sparqlstore.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,7 @@ def test_query(self):
440440

441441

442442
class SPARQL11ProtocolStoreMock(BaseHTTPRequestHandler):
443-
def do_POST(self): # noqa: N802
443+
def do_POST(self):
444444
"""
445445
If the body should be analysed as well, just use:
446446
```
@@ -477,7 +477,7 @@ def do_POST(self): # noqa: N802
477477
self.end_headers()
478478
return
479479

480-
def do_GET(self): # noqa: N802
480+
def do_GET(self):
481481
# Process an HTTP GET request and return a response with an HTTP 200 status.
482482
self.send_response(200, "OK")
483483
self.end_headers()

test/utils/httpfileserver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ def make_handler(self) -> type[BaseHTTPRequestHandler]:
185185
class Handler(BaseHTTPRequestHandler):
186186
server: HTTPFileServer
187187

188-
def do_GET(self) -> None: # noqa: N802
188+
def do_GET(self) -> None:
189189
parsed_path = urlparse(self.path)
190190
path_query = parse_qs(parsed_path.query)
191191
body = None

0 commit comments

Comments
 (0)