-
Notifications
You must be signed in to change notification settings - Fork 195
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (60 loc) · 1.4 KB
/
pyproject.toml
File metadata and controls
66 lines (60 loc) · 1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[project]
name = "bids-specification"
requires-python = ">=3.11"
dependencies = [
"bidsschematools[render]",
"mkdocs>=1.1.0",
"mkdocs-material>=5.4",
"pymdown-extensions>=9.2.0",
"mkdocs-branchcustomization-plugin~=0.1.3",
"mkdocs-macros-plugin",
"mkdocs-redirects",
"numpy",
]
dynamic = ["version"]
[tool.uv.sources]
bidsschematools = { path = "tools/schemacode", editable = true }
[dependency-groups]
doc = [
"bidsschematools[expressions]",
"sphinx>=7.2.2",
"furo",
"myst_parser",
"myst-nb",
"universal_pathlib",
"fsspec[http]",
]
tools = [
"cffconvert",
]
[tool.bumpversion]
current_version = "1.11.2-dev"
parse = """(?x)
(?P<major>[0-9]+)
\\.(?P<minor>[0-9]+)
\\.(?P<patch>[0-9]+)
(?:-(?P<pre_label>dev))?
"""
serialize = ["{major}.{minor}.{patch}-{pre_label}", "{major}.{minor}.{patch}"]
commit = true
message = "chore: Bump BIDS version to {new_version}"
[tool.bumpversion.parts.pre_label]
values = ["dev", "final"]
optional_value = "final"
[[tool.bumpversion.files]]
filename = "CITATION.cff"
[[tool.bumpversion.files]]
filename = "mkdocs.yml"
[[tool.bumpversion.files]]
filename = "src/schema/BIDS_VERSION"
[[tool.bumpversion.files]]
filename = "src/schema/meta/versions.yaml"
search = """NEXT_VERSION_HERE
- """
replace = """NEXT_VERSION_HERE
- '{new_version}'
- """
include_bumps = ['pre_label']
[[tool.mypy.overrides]]
module = ["pymdownx.*"]
ignore_missing_imports = true