File tree Expand file tree Collapse file tree 3 files changed +9
-1
lines changed
Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
66and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
77
8+ ## [ 0.67.2.2] - 2024-11-24
9+
10+ ### Fixed
11+ - Fixed PyPI upload by converting Linux wheel tags to manylinux2014 tags
12+
813## [ 0.67.2.1] - 2024-11-24
914
1015### Added
Original file line number Diff line number Diff line change 11[metadata]
22name = trivy_py_ecc
3- version = 0.67.2.1
3+ version = 0.67.2.2
44description = Python wrapper around invoking trivy (https://trivy.dev/)
55long_description = file: README.md
66long_description_content_type = text/markdown
Original file line number Diff line number Diff line change @@ -15,6 +15,9 @@ def finalize_options(self):
1515
1616 def get_tag (self ):
1717 _ , _ , plat = orig_bdist_wheel .get_tag (self )
18+ # Convert linux tags to manylinux tags for PyPI compatibility
19+ if plat .startswith ('linux' ):
20+ plat = plat .replace ('linux' , 'manylinux2014' )
1821 # We don't contain any python source, nor any python extensions
1922 return 'py2.py3' , 'none' , plat
2023
You can’t perform that action at this time.
0 commit comments