We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f6cd8e commit 68713c0Copy full SHA for 68713c0
tests/unit/test_models_wheel.py
@@ -93,6 +93,14 @@ def test_not_supported_osx_version(self):
93
w = Wheel('simple-0.1-cp27-none-macosx_10_9_intel.whl')
94
assert not w.supported(tags=tags)
95
96
+ @pytest.mark.xfail(
97
+ reason=(
98
+ "packaging.tags changed behaviour in this area, and @pradyunsg "
99
+ "decided as the release manager that this behaviour change is less "
100
+ "critical than Big Sur support for pip 20.3. See "
101
+ "https://github.com/pypa/packaging/pull/361 for further discussion."
102
+ )
103
104
def test_supported_multiarch_darwin(self):
105
"""
106
Multi-arch wheels (intel) are supported on components (i386, x86_64)
0 commit comments