Skip to content

Commit bf019be

Browse files
committed
upped fileformats dependency versions and raise erorrs in auto-gen of interfaces
1 parent 115f404 commit bf019be

File tree

3 files changed

+11
-31
lines changed

3 files changed

+11
-31
lines changed

.github/workflows/ci-cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ jobs:
120120
$MRTRIX_INSTALL/bin
121121
$(pwd)
122122
$MRTRIX_VERSION
123-
--log-errors
123+
--raise-errors
124124
--latest
125125
- name: Upload MRtrix3 install
126126
uses: actions/upload-artifact@v4

related-packages/fileformats-extras/pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ description = "Classes for representing different file formats in Python classes
88
readme = "README.rst"
99
requires-python = ">=3.8"
1010
dependencies = [
11-
"fileformats >= 0.8",
11+
"fileformats >=0.15a3",
12+
"fileformats-medimage >=0.10.0a1",
1213
"fileformats-medimage-mrtrix3 >=3.0.4a5",
1314
"medimages4tests",
1415
"pydra >= 0.23.0",

related-packages/fileformats/pyproject.toml

Lines changed: 8 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -7,21 +7,13 @@ name = "fileformats-medimage-mrtrix3"
77
description = "Classes for representing different file formats in Python classes for use in type hinting in data workflows"
88
readme = "README.rst"
99
requires-python = ">=3.8"
10-
dependencies = [
11-
"fileformats >= 0.8.5",
12-
"fileformats-medimage >= 0.4.4"
13-
]
14-
license = {file = "LICENSE"}
15-
authors = [
16-
{name = "Thomas G. Close", email = "[email protected]"},
17-
]
10+
dependencies = ["fileformats >=0.15a3", "fileformats-medimage >= 0.10.0a1"]
11+
license = { file = "LICENSE" }
12+
authors = [{ name = "Thomas G. Close", email = "[email protected]" }]
1813
maintainers = [
19-
{name = "Thomas G. Close", email = "[email protected]"},
14+
{ name = "Thomas G. Close", email = "[email protected]" },
2015
] # Ideally this would be the generic MRtrix developers authors list, but will leave it as me for now
21-
keywords = [
22-
"file formats",
23-
"data",
24-
]
16+
keywords = ["file formats", "data"]
2517
classifiers = [
2618
"Development Status :: 3 - Alpha",
2719
"Environment :: Console",
@@ -39,19 +31,8 @@ classifiers = [
3931
dynamic = ["version"]
4032

4133
[project.optional-dependencies]
42-
dev = [
43-
"black",
44-
"pre-commit",
45-
"codespell",
46-
"flake8",
47-
"flake8-pyproject",
48-
]
49-
test = [
50-
"pytest >=6.2.5",
51-
"pytest-env>=0.6.2",
52-
"pytest-cov>=2.12.1",
53-
"codecov",
54-
]
34+
dev = ["black", "pre-commit", "codespell", "flake8", "flake8-pyproject"]
35+
test = ["pytest >=6.2.5", "pytest-env>=0.6.2", "pytest-cov>=2.12.1", "codecov"]
5536

5637
[project.urls]
5738
repository = "https://github.com/MRtrix3/mrtrix3"
@@ -75,9 +56,7 @@ ignore-words = ".codespell-ignorewords"
7556

7657
[tool.flake8]
7758
doctests = true
78-
per-file-ignores = [
79-
"__init__.py:F401"
80-
]
59+
per-file-ignores = ["__init__.py:F401"]
8160
max-line-length = 88
8261
select = "C,E,F,W,B,B950"
8362
extend-ignore = ['E203', 'E501', 'E129']

0 commit comments

Comments
 (0)