Note: This is a public test instance of Red Hat Bugzilla. The data contained within is a snapshot of the live data so any changes you make will not be reflected in the production Bugzilla. Email is disabled so feel free to test any aspect of the site that you want. File any problems you find or give feedback at bugzilla.redhat.com.
Bug 1898727 - python-poetry-core fails to build with Python 3.10: Wheel tag regex in tests is not working for 3.10+
Summary: python-poetry-core fails to build with Python 3.10: Wheel tag regex in tests ...
Keywords:
Status: CLOSED RAWHIDE
Alias: None
Product: Fedora
Classification: Fedora
Component: python-poetry-core
Version: rawhide
Hardware: Unspecified
OS: Unspecified
unspecified
unspecified
Target Milestone: ---
Assignee: Miro Hrončok
QA Contact: Fedora Extras Quality Assurance
URL:
Whiteboard:
Depends On:
Blocks: PYTHON3.10
TreeView+ depends on / blocked
 
Reported: 2020-11-17 23:54 UTC by Miro Hrončok
Modified: 2020-11-24 10:38 UTC (History)
3 users (show)

Fixed In Version:
Doc Type: If docs needed, set a value
Doc Text:
Clone Of:
Environment:
Last Closed: 2020-11-24 10:38:20 UTC
Type: Bug
Embargoed:


Attachments (Terms of Use)


Links
System ID Private Priority Status Summary Last Updated
Github python-poetry poetry-core issues 110 0 None closed The test regex for Python wheel tag fails with Python 3.10 2020-11-24 09:42:30 UTC

Description Miro Hrončok 2020-11-17 23:54:45 UTC
python-poetry-core fails to build with Python 3.10.0a2.

        try:
            wheel_data = decode(zip.read("extended-0.1.dist-info/WHEEL"))
    
>           assert (
                re.match(
                    """(?m)^\
    Wheel-Version: 1.0
    Generator: poetry {}
    Root-Is-Purelib: false
    Tag: cp[23]\\d-cp[23]\\dm?u?-.+
    $""".format(
                        __version__
                    ),
                    wheel_data,
                )
                is not None
            )
E           AssertionError: assert None is not None
E            +  where None = <function match at 0x7efe31006940>('(?m)^Wheel-Version: 1.0\nGenerator: poetry 1.0.0\nRoot-Is-Purelib: false\nTag: cp[23]\\d-cp[23]\\dm?u?-.+\n$', 'Wheel-Version: 1.0\nGenerator: poetry 1.0.0\nRoot-Is-Purelib: false\nTag: cp3_10-cp3_10-manylinux2014_x86_64\n')
E            +    where <function match at 0x7efe31006940> = re.match
E            +    and   '(?m)^Wheel-Version: 1.0\nGenerator: poetry 1.0.0\nRoot-Is-Purelib: false\nTag: cp[23]\\d-cp[23]\\dm?u?-.+\n$' = <built-in method format of str object at 0x7efe2f79a5d0>('1.0.0')
E            +      where <built-in method format of str object at 0x7efe2f79a5d0> = '(?m)^Wheel-Version: 1.0\nGenerator: poetry {}\nRoot-Is-Purelib: false\nTag: cp[23]\\d-cp[23]\\dm?u?-.+\n$'.format


This is closely related to bz1891840 but a bit different.

The test asserts the following regex:  cp[23]\\d-cp[23]\\dm?u?-.+

But that doe snot work with double digit Python minor version. Regardless if this ends up cp3_10 or cp310.


I've reported it to upstream: https://github.com/python-poetry/poetry-core/issues/110



For the build logs, see:
https://copr-be.cloud.fedoraproject.org/results/@python/python3.10/fedora-rawhide-x86_64/01772492-python-poetry-core/

For all our attempts to build python-poetry-core with Python 3.10, see:
https://copr.fedorainfracloud.org/coprs/g/python/python3.10/package/python-poetry-core/

Testing and mass rebuild of packages is happening in copr. You can follow these instructions to test locally in mock if your package builds with Python 3.10:
https://copr.fedorainfracloud.org/coprs/g/python/python3.10/

Let us know here if you have any questions.

Python 3.10 will be included in Fedora 35. To make that update smoother, we're building Fedora packages with early pre-releases of Python 3.10.
A build failure prevents us from testing all dependent packages (transitive [Build]Requires), so if this package is required a lot, it's important for us to get it fixed soon.
We'd appreciate help from the people who know this package best, but if you don't want to work on this now, let us know so we can try to work around it on our side.

Comment 1 Miro Hrončok 2020-11-18 10:19:06 UTC
An upstream PR: https://github.com/python-poetry/poetry-core/pull/111

Building that in copr for now before upstream gets back to us.

Comment 2 Miro Hrončok 2020-11-18 18:26:06 UTC
Upstream PR was merged.

A Fedora PR: https://src.fedoraproject.org/rpms/python-poetry-core/pull-request/1


Note You need to log in before you can comment on or make changes to this bug.