Skip to content

Commit 362dd86

Browse files
authored
Merge pull request #21 from patchmemory/fix/test-failures-python310
Fix test failures on Python 3.10
2 parents 4aa213b + 88d5e12 commit 362dd86

File tree

7 files changed

+5
-79
lines changed

7 files changed

+5
-79
lines changed

dev

Submodule dev updated from 837127b to d6bb1b0

docs/ux-runbook-2025-09-12.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Neo4j (optional; for graph projection testing only):
3535

3636
## 2) Starting the app
3737

38-
- Python: 3.10+
38+
- Python: 3.12+
3939
- Install deps: pip install -r requirements.txt
4040
- Start: python start_scidk.py or `FLASK_APP=scidk.app:create_app flask run` (if configured).
4141
- Default UI: http://localhost:5000/

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ version = "0.0.1"
88
description = "SciDK - Science Data Kit (MVP)"
99
authors = [{name = "SciDK Team"}]
1010
readme = "README.md"
11-
requires-python = ">=3.10"
11+
requires-python = ">=3.12"
1212
dependencies = [
1313
"Flask>=3.0",
1414
"openpyxl>=3.1",

scidk/core/folder_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from pathlib import Path
33
from typing import Dict, Any, Optional
44

5-
import tomllib # Python 3.11+
5+
import tomllib # Python 3.11+ (built-in)
66

77
DEFAULTS = {
88
'include': [], # list of glob patterns

tests/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
"""SciDK test suite."""

tests/e2e/test_graph_features.py

Lines changed: 0 additions & 20 deletions
This file was deleted.

tests/e2e/test_scan_workflow.py

Lines changed: 0 additions & 55 deletions
This file was deleted.

0 commit comments

Comments
 (0)