https://bugzilla.redhat.com/show_bug.cgi?id=1892756
Miro Hrončok <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #3 from Miro Hrončok <[email protected]> --- Just came here to say that on this line: %{python3_sitelib}/%{pypi_name}-%{version}-py?.?.egg-info The ?.? glob will now work with Python 3.10. Please, don't use that glob. Either relax the glob: %{python3_sitelib}/%{pypi_name}-%{version}-py*.egg-info/ Or use a macro: %{python3_sitelib}/%{pypi_name}-%{version}-py%{python3_version}.egg-info/ Thanks! (Note that I've also added a trailing slash. That is useful with any directory - it asserts the directory stays a directory.) -- You are receiving this mail because: You are on the CC list for the bug. You are always notified about changes to this product and component _______________________________________________ package-review mailing list -- [email protected] To unsubscribe send an email to [email protected] Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/[email protected]
