From 4e67cdc00b2fe5ae14e176a05178224b864fddac Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Wed, 25 Mar 2020 10:39:10 +0100 Subject: [PATCH] consider git+https:// before git+ssh:// URLs for dependencies (fixes #124) --- lib/vsc/install/shared_setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/vsc/install/shared_setup.py b/lib/vsc/install/shared_setup.py index 2d3b1e04..273df9d4 100644 --- a/lib/vsc/install/shared_setup.py +++ b/lib/vsc/install/shared_setup.py @@ -159,7 +159,7 @@ def _log(self, level, msg, args): RELOAD_VSC_MODS = False -VERSION = '0.15.0' +VERSION = '0.15.1' log.info('This is (based on) vsc.install.shared_setup %s' % VERSION) log.info('(using setuptools version %s located at %s)' % (setuptools.__version__, setuptools.__file__)) @@ -1422,9 +1422,9 @@ def parse_target(self, target, urltemplate=None): if self.private_repo: urls = [ + ('github.com', 'git+https://'), ('github.ugent.be', 'git+ssh://git@'), ('github.com', 'git+ssh://git@'), - ('github.com', 'git+https://'), ] else: urls = [('github.com', 'git+https://')]