Skip to content

Commit e6cced2

Browse files
committed
Does it need to be a tuple for the tests to succeed?
1 parent dfd4d81 commit e6cced2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

easybuild/tools/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@
120120
DEFAULT_PR_TARGET_ACCOUNT = 'easybuilders'
121121
DEFAULT_PREFIX = os.path.join(os.path.expanduser('~'), ".local", "easybuild")
122122
DEFAULT_REPOSITORY = 'FileRepository'
123-
DEFAULT_EXTRA_SOURCE_URLS = ['https://sources.easybuild.io/']
123+
DEFAULT_EXTRA_SOURCE_URLS = ('https://sources.easybuild.io/',)
124124
# Filter these CUDA libraries by default from the RPATH sanity check.
125125
# These are the only four libraries for which the CUDA toolkit ships stubs. By design, one is supposed to build
126126
# against the stub versions, but use the libraries that come with the CUDA driver at runtime. That means they should

easybuild/tools/options.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,7 @@ def override_options(self):
410410
'extra-modules': ("List of extra modules to load after setting up the build environment",
411411
'strlist', 'extend', None),
412412
"extra-source-urls": ("Specify URLs to fetch sources from in addition to those in the easyconfig",
413-
"urllist", "add_flex", DEFAULT_EXTRA_SOURCE_URLS, {'metavar': 'URL[%sURL]' % '|'}),
413+
"urltuple", "add_flex", DEFAULT_EXTRA_SOURCE_URLS, {'metavar': 'URL[%sURL]' % '|'}),
414414
'fetch': ("Allow downloading sources ignoring OS and modules tool dependencies, "
415415
"implies --stop=fetch, --ignore-osdeps and ignore modules tool", None, 'store_true', False),
416416
'filter-deps': ("List of dependencies that you do *not* want to install with EasyBuild, "

0 commit comments

Comments
 (0)