Skip to content

tests/test_tags.py:43: AssertionError on Darwin #760

@doronbehar

Description

@doronbehar

Links:

________________________________ test_wheel_tag ________________________________

    def test_wheel_tag():
>       assert str(mesonpy._tags.Tag()) == f'{INTERPRETER}-{ABI}-{PLATFORM}'
E       AssertionError: assert 'cp313-cp313-...sx_11_0_arm64' == 'cp313-cp313-...sx_15_0_arm64'
E         
E         - cp313-cp313-macosx_15_0_arm64
E         ?                     ^
E         + cp313-cp313-macosx_11_0_arm64
E         ?                     ^

tests/test_tags.py:43: AssertionError
____________________________ test_tag_platlib_wheel ____________________________

    def test_tag_platlib_wheel():
        builder = wheel_builder_test_factory({
            'platlib': [f'extension{SUFFIX}'],
        })
>       assert str(builder.tag) == f'{INTERPRETER}-{ABI}-{PLATFORM}'
E       AssertionError: assert 'cp313-cp313-...sx_11_0_arm64' == 'cp313-cp313-...sx_15_0_arm64'
E         
E         - cp313-cp313-macosx_15_0_arm64
E         ?                     ^
E         + cp313-cp313-macosx_11_0_arm64
E         ?                     ^

tests/test_tags.py:99: AssertionError
_____________________________ test_tag_stable_abi ______________________________

    def test_tag_stable_abi():
        builder = wheel_builder_test_factory({
            'platlib': [f'extension{ABI3SUFFIX}'],
        }, limited_api=True)
        # PyPy does not support the stable ABI.
        abi = 'abi3' if '__pypy__' not in sys.builtin_module_names else ABI
>       assert str(builder.tag) == f'{INTERPRETER}-{abi}-{PLATFORM}'
E       AssertionError: assert 'cp313-abi3-macosx_11_0_arm64' == 'cp313-abi3-macosx_15_0_arm64'
E         
E         - cp313-abi3-macosx_15_0_arm64
E         ?                    ^
E         + cp313-abi3-macosx_11_0_arm64
E         ?                    ^

tests/test_tags.py:108: AssertionError

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions