We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
PRE_INIT_COMMIT_SHA
datalad_core
1 parent 5961e47 commit b636124Copy full SHA for b636124
datalad_next/consts/__init__.py
@@ -16,6 +16,13 @@
16
``True`` if executed on the Windows platform.
17
"""
18
19
+__all__ = [
20
+ 'COPY_BUFSIZE',
21
+ 'PRE_INIT_COMMIT_SHA',
22
+ 'on_linux',
23
+ 'on_windows',
24
+]
25
+
26
# import from "utils", but these really are constants
27
from datalad.utils import (
28
on_linux,
@@ -29,4 +36,4 @@
29
36
# from PY3.10
30
37
COPY_BUFSIZE = 1024 * 1024 if on_windows else 64 * 1024
31
38
32
-from datalad.consts import PRE_INIT_COMMIT_SHA
39
+from datalad_core.consts import PRE_INIT_COMMIT_SHA
pyproject.toml
@@ -36,6 +36,7 @@ classifiers = [
dependencies = [
"annexremote",
"datalad >= 0.18.4",
+ "datalad-core",
40
"datasalad >= 0.5.0",
41
"humanize",
42
"more-itertools",
0 commit comments