Bump archspec 0.2.5-dev (#46503)

Use commit bceb39528ac49dd0c876b2e9bf3e7482e9c2be4a
This commit is contained in:
Massimiliano Culpo 2024-09-21 14:05:41 +02:00 committed by Harmen Stoppels
parent dca09e6e0f
commit 8ade071253
2 changed files with 4 additions and 1 deletions

View File

@ -18,7 +18,7 @@
* Homepage: https://pypi.python.org/pypi/archspec
* Usage: Labeling, comparison and detection of microarchitectures
* Version: 0.2.5-dev (commit cbb1fd5eb397a70d466e5160b393b87b0dbcc78f)
* Version: 0.2.5-dev (commit bceb39528ac49dd0c876b2e9bf3e7482e9c2be4a)
astunparse
----------------

View File

@ -115,6 +115,9 @@ def __eq__(self, other):
and self.cpu_part == other.cpu_part
)
def __hash__(self):
return hash(self.name)
@coerce_target_names
def __ne__(self, other):
return not self == other