Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Version 1.2.3
-------------
* Remove python hashes feature flag


Version 1.2.2
-------------
* Upgrade pytest to 7.2.2
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.2.2
1.2.3
3 changes: 1 addition & 2 deletions build_defs/python.build_defs
Original file line number Diff line number Diff line change
Expand Up @@ -561,7 +561,7 @@ def python_wheel(name:str, version:str, labels:list=[], hashes:list=None, packag
_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 @@ -611,7 +611,6 @@ def python_wheel(name:str, version:str, labels:list=[], hashes:list=None, packag
name = name,
tag = "lib_rule" if binary else None,
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