Skip to content

Commit 54a4a11

Browse files
committed
use openMINDS version 3, rather than "latest"
1 parent 1501b8a commit 54a4a11

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

bids2openminds/main.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
import pandas as pd
77
from nameparser import HumanName
88

9-
import openminds.latest.core as omcore
10-
import openminds.latest.controlled_terms as controlled_terms
9+
import openminds.v3.core as omcore
10+
import openminds.v3.controlled_terms as controlled_terms
1111
from openminds import IRI
1212

1313
from .utility import table_filter, pd_table_value, file_hash, file_storage_size, detect_nifti_version

bids2openminds/utility.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77

88
import pandas as pd
99

10-
import openminds.latest.controlled_terms as controlled_terms
11-
from openminds.latest.core import Hash, QuantitativeValue, ContentType
12-
from openminds.latest.controlled_terms import UnitOfMeasurement
10+
import openminds.v3.controlled_terms as controlled_terms
11+
from openminds.v3.core import Hash, QuantitativeValue, ContentType
12+
from openminds.v3.controlled_terms import UnitOfMeasurement
1313

1414

1515
def read_json(file_path: str) -> dict:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "bids2openminds"
3-
version = "0.1.0"
3+
version = "0.1.1.dev.0"
44
dependencies = [
55
"bids",
66
"openminds >= 0.2.3",

test/test_person.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# test for create_openminds_person function in the main
22
import pytest
33
from bids2openminds.main import create_openminds_person
4-
import openminds.latest.core as omcore
4+
import openminds.v3.core as omcore
55

66
# Test data: (full_name, given_name, family_name)
77
example_names = [("John Ronald Reuel Tolkien", "John Ronald Reuel", "Tolkien"),

0 commit comments

Comments
 (0)