Bug 2283521
Summary: | python-rasterio fails to build with Python 3.13: test_create_sidecar_mask and test_update_tags fail | ||
---|---|---|---|
Product: | [Fedora] Fedora | Reporter: | Karolina Surma <ksurma> |
Component: | python-rasterio | Assignee: | Elliott Sales de Andrade <quantum.analyst> |
Status: | CLOSED RAWHIDE | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
Severity: | unspecified | Docs Contact: | |
Priority: | unspecified | ||
Version: | rawhide | CC: | awilliam, epel-packagers-sig, gwync, jonathan, ksurma, mhroncok, python-packagers-sig, quantum.analyst |
Target Milestone: | --- | ||
Target Release: | --- | ||
Hardware: | Unspecified | ||
OS: | Unspecified | ||
Whiteboard: | |||
Fixed In Version: | Doc Type: | If docs needed, set a value | |
Doc Text: | Story Points: | --- | |
Clone Of: | Environment: | ||
Last Closed: | 2024-06-14 19:06:34 UTC | Type: | Bug |
Regression: | --- | Mount Type: | --- |
Documentation: | --- | CRM: | |
Verified Versions: | Category: | --- | |
oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
Cloudforms Team: | --- | Target Upstream Version: | |
Embargoed: | |||
Bug Depends On: | |||
Bug Blocks: | 2244836, 2280823 |
Description
Karolina Surma
2024-05-27 15:33:37 UTC
The test_update_tags failure seems to be because the escaping changed somehow - it's looking for Metadata:\W+a=1\W+AREA_OR_POINT=Area\W+b=2 (with single backslashes) but we have Metadata:\\W+a=1\\W+AREA_OR_POINT=Area\\W+b=2 (with double backslashes). Not sure why that is or if it's the test or whatever generates the string that needs fixing. Will look at it more tomorrow. oh no, duh, those are regex specifiers of course. this is checking the output of gdalinfo on a TIFF file modified to add some tags...which kinda implies the modification no longer works as expected so we're not getting the expected output. |