From a722ca4b7e7e24f055d1161c12e0924879607e70 Mon Sep 17 00:00:00 2001 From: Chris Markiewicz Date: Wed, 21 Oct 2020 16:00:56 -0400 Subject: [PATCH 1/2] FIX: Bad format string --- nipype/algorithms/misc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nipype/algorithms/misc.py b/nipype/algorithms/misc.py index 756cdb8a10..50ae18f5be 100644 --- a/nipype/algorithms/misc.py +++ b/nipype/algorithms/misc.py @@ -1408,7 +1408,7 @@ def merge_rois(in_files, in_idxs, in_ref, dtype=None, out_file=None): # to avoid memory errors if op.splitext(in_ref)[1] == ".gz": try: - iflogger.info("uncompress %i", in_ref) + iflogger.info("uncompress %s", in_ref) sp.check_call(["gunzip", in_ref], stdout=sp.PIPE, shell=True) in_ref = op.splitext(in_ref)[0] except: From 9dc7f43f560092b5dbd079d559ac8530ea3d847c Mon Sep 17 00:00:00 2001 From: Chris Markiewicz Date: Wed, 21 Oct 2020 16:48:10 -0400 Subject: [PATCH 2/2] CI: Upgrade Linux distribution Focal is latest, but Neurodebian only supports through Bionic --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 8fb76e5050..40d5937c02 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,5 @@ os: linux -dist: xenial +dist: bionic language: python # our build matrix