Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 6464fb4

Browse files
committedFeb 12, 2023
MNT: Ignore nibabel-data when building sdists
1 parent 91cf8d6 commit 6464fb4

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed
 

‎pyproject.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,11 @@ typing = ["mypy", "pytest", "types-setuptools", "types-Pillow", "pydicom"]
7272
zstd = ["pyzstd >= 0.14.3"]
7373

7474
[tool.hatch.build.targets.sdist]
75-
exclude = [".git_archival.txt"]
75+
exclude = [
76+
".git_archival.txt",
77+
# Submodules with large files; if we don't want them in the repo...
78+
"nibabel-data/",
79+
]
7680

7781
[tool.hatch.build.targets.wheel]
7882
packages = ["nibabel", "nisext"]

0 commit comments

Comments
 (0)
Please sign in to comment.