comparison env/lib/python3.7/site-packages/setuptools/dep_util.py @ 2:6af9afd405e9 draft

"planemo upload commit 0a63dd5f4d38a1f6944587f52a8cd79874177fc1"
author shellac
date Thu, 14 May 2020 14:56:58 -0400
parents 26e78fe6e8c4
children
comparison
equal deleted inserted replaced
1:75ca89e9b81c 2:6af9afd405e9
1 from distutils.dep_util import newer_group
2
3 # yes, this is was almost entirely copy-pasted from
4 # 'newer_pairwise()', this is just another convenience
5 # function.
6 def newer_pairwise_group(sources_groups, targets):
7 """Walk both arguments in parallel, testing if each source group is newer
8 than its corresponding target. Returns a pair of lists (sources_groups,
9 targets) where sources is newer than target, according to the semantics
10 of 'newer_group()'.
11 """
12 if len(sources_groups) != len(targets):
13 raise ValueError("'sources_group' and 'targets' must be the same length")
14
15 # build a pair of lists (sources_groups, targets) where source is newer
16 n_sources = []
17 n_targets = []
18 for i in range(len(sources_groups)):
19 if newer_group(sources_groups[i], targets[i]):
20 n_sources.append(sources_groups[i])
21 n_targets.append(targets[i])
22
23 return n_sources, n_targets