Skip to content

Commit 1e4b118

Browse files
authored
Remove hashes ff for master (#104)
1 parent e1eb969 commit 1e4b118

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

build_defs/python.build_defs

+2-3
Original file line numberDiff line numberDiff line change
@@ -569,7 +569,7 @@ def python_wheel(name:str, version:str, hashes:list=None, package_name:str=None,
569569
outs = [name + '.whl'],
570570
cmd = cmd,
571571
tools = [tool],
572-
hashes = hashes if CONFIG.FF_PYTHON_WHEEL_HASHING else None,
572+
hashes = hashes,
573573
licences = licences if licences else None,
574574
building_description = 'Extracting...',
575575
sandbox = False,
@@ -581,7 +581,7 @@ def python_wheel(name:str, version:str, hashes:list=None, package_name:str=None,
581581
_tag = 'download',
582582
out = name + '.whl',
583583
url = urls,
584-
hashes = hashes if CONFIG.FF_PYTHON_WHEEL_HASHING else None,
584+
hashes = hashes,
585585
licences = licences if licences else None,
586586
)
587587

@@ -634,7 +634,6 @@ def python_wheel(name:str, version:str, hashes:list=None, package_name:str=None,
634634
return build_rule(
635635
name = name,
636636
srcs = [wheel_rule],
637-
hashes = None if CONFIG.FF_PYTHON_WHEEL_HASHING else hashes,
638637
outs = outs or [name],
639638
tools = [CONFIG.JARCAT_TOOL],
640639
cmd = cmd,

0 commit comments

Comments
 (0)