We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc7e66d commit 16fe82bCopy full SHA for 16fe82b
1 file changed
src/scyjava/config.py
@@ -7,7 +7,9 @@
7
from typing import Sequence
8
9
import jpype as _jpype
10
-from jgo import maven_scijava_repository as _scijava_public
+
11
12
+_SCIJAVA_PUBLIC = "https://maven.scijava.org/content/groups/public"
13
14
15
_logger = _logging.getLogger(__name__)
@@ -21,7 +23,7 @@
21
23
22
24
endpoints: list[str] = []
25
-_repositories = {"scijava.public": _scijava_public()}
26
+_repositories = {"scijava.public": _SCIJAVA_PUBLIC}
27
_verbose = 0
28
_manage_deps = True
29
_cache_dir = Path.home() / ".jgo"
0 commit comments