Skip to content

Commit

Permalink
Merged in py310 (pull request #4)
Browse files Browse the repository at this point in the history
Fix test_is_compatible to work with Python 3.10
  • Loading branch information
mgorny authored and vsajip committed May 31, 2021
2 parents 88a9c04 + 5a9540c commit cb6c41b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_wheel.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ def test_compatible_tags(self):

def test_is_compatible(self):
fn = os.path.join(HERE, 'dummy-0.1-py27-none-any.whl')
if 'py27' <= PYVER < 'py32':
if PYVER in ('py27', 'py30', 'py31'):
self.assertTrue(is_compatible(fn))
self.assertTrue(Wheel(fn).is_compatible())
# use actual wheel names from PyPI.
Expand Down

0 comments on commit cb6c41b

Please sign in to comment.