Skip to content

Commit 7315816

Browse files
committed
Merge branch 'dev' into activate_tc
# Conflicts: # pyproject.toml # src/autointent/_dump_tools/unit_dumpers.py # src/autointent/_wrappers/embedder/sentence_transformers.py # src/autointent/modules/scoring/_gcn/gcn_model.py # tests/context/test_vector_index.py # tests/embedder/test_caching.py # tests/embedder/test_memory.py
2 parents 9c0681a + f421e09 commit 7315816

File tree

6 files changed

+6
-2
lines changed

6 files changed

+6
-2
lines changed

.github/workflows/reusable-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
fail-fast: false
1616
matrix:
1717
os: [ ubuntu-latest ]
18-
python-version: [ "3.10", "3.11", "3.12" ]
18+
python-version: [ "3.10", "3.11", "3.12", "3.13", ]
1919
include:
2020
- os: windows-latest
2121
python-version: "3.10"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ classifiers=[
2929
'Framework :: Sphinx',
3030
'Typing :: Typed',
3131
]
32-
requires-python = ">=3.10,<3.15"
32+
requires-python = ">=3.10,<3.14"
3333
dependencies = [
3434
"sentence-transformers (>=3,<6)",
3535
"scikit-learn (>=1.5,<2.0)",

src/autointent/_wrappers/embedder/sentence_transformers.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
from __future__ import annotations
22

3+
import json
34
import json
45
import logging
56
import tempfile

src/autointent/modules/scoring/_gcn/gcn_model.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
import json
44
from typing import TYPE_CHECKING
5+
from pathlib import Path
56

67
import torch
78
from pydantic import BaseModel

tests/context/test_vector_index.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
from __future__ import annotations
22

3+
import sys
34
import sys
45
import tempfile
56
import uuid

tests/embedder/test_memory.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
from typing import TYPE_CHECKING
44

5+
import numpy as np
56
import numpy as np
67
import pytest
78

0 commit comments

Comments
 (0)