Skip to content

Commit

Permalink
Remove hashes ff for master (#104)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tatskaari authored Mar 22, 2023
1 parent e1eb969 commit 1e4b118
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions build_defs/python.build_defs
Original file line number Diff line number Diff line change
Expand Up @@ -569,7 +569,7 @@ def python_wheel(name:str, version:str, hashes:list=None, package_name:str=None,
outs = [name + '.whl'],
cmd = cmd,
tools = [tool],
hashes = hashes if CONFIG.FF_PYTHON_WHEEL_HASHING else None,
hashes = hashes,
licences = licences if licences else None,
building_description = 'Extracting...',
sandbox = False,
Expand All @@ -581,7 +581,7 @@ def python_wheel(name:str, version:str, hashes:list=None, package_name:str=None,
_tag = 'download',
out = name + '.whl',
url = urls,
hashes = hashes if CONFIG.FF_PYTHON_WHEEL_HASHING else None,
hashes = hashes,
licences = licences if licences else None,
)

Expand Down Expand Up @@ -634,7 +634,6 @@ def python_wheel(name:str, version:str, hashes:list=None, package_name:str=None,
return build_rule(
name = name,
srcs = [wheel_rule],
hashes = None if CONFIG.FF_PYTHON_WHEEL_HASHING else hashes,
outs = outs or [name],
tools = [CONFIG.JARCAT_TOOL],
cmd = cmd,
Expand Down

0 comments on commit 1e4b118

Please sign in to comment.