Bug 1758474
| Summary: | pybind11: FTBFS with Python 3.8.0rc1 | ||
|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | Miro Hrončok <mhroncok> |
| Component: | pybind11 | Assignee: | Susi Lehtola <susi.lehtola> |
| Status: | CLOSED RAWHIDE | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
| Severity: | unspecified | Docs Contact: | |
| Priority: | unspecified | ||
| Version: | rawhide | CC: | susi.lehtola |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
| URL: | http://koschei.fedoraproject.org/package/pybind11 | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | If docs needed, set a value | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2019-10-08 17:03:29 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: | 1750908, 1686977 | ||
Reported upstream at https://github.com/pybind/pybind11/issues/1946 Awesome! |
Description of problem: Package pybind11 fails to build from source in Fedora rawhide with Python 3.8.0rc1: _____________________________ test_class_refcount ______________________________ @pytest.unsupported_on_pypy def test_class_refcount(): """Instances must correctly increase/decrease the reference count of their types (#1029)""" from sys import getrefcount class PyDog(m.Dog): pass for cls in m.Dog, PyDog: refcount_1 = getrefcount(cls) molly = [cls("Molly") for _ in range(10)] refcount_2 = getrefcount(cls) del molly pytest.gc_collect() refcount_3 = getrefcount(cls) > assert refcount_1 == refcount_3 E assert 6 == 16 test_class.py:255: AssertionError Version-Release number of selected component (if applicable): 2.4.2-1.fc32 Steps to Reproduce: koji build --scratch f32 pybind11-2.4.2-1.fc32.src.rpm Additional info: This package is tracked by Koschei. See: http://koschei.fedoraproject.org/package/pybind11