Bug 1959317

Summary: python-execnet with Python 3.10: DeprecationWarning: isSet() is deprecated, use is_set() instead
Product: [Fedora] Fedora Reporter: Miro Hrončok <mhroncok>
Component: python-execnetAssignee: Miro Hrončok <mhroncok>
Status: CLOSED RAWHIDE QA Contact: Fedora Extras Quality Assurance <extras-qa>
Severity: unspecified Docs Contact:
Priority: unspecified    
Version: rawhideCC: adeza, ktdreyer, thomas.moschny
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: 2021-05-11 14:35:48 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: 1890881, 1959305    

Description Miro Hrončok 2021-05-11 09:25:37 UTC
execnet emits the following warning on Python 3.10:

  File "/usr/lib64/python3.10/threading.py", line 557, in isSet
    warnings.warn('isSet() is deprecated, use is_set() instead',
DeprecationWarning: isSet() is deprecated, use is_set() instead

https://docs.python.org/3.10/whatsnew/3.10.html#deprecated

"""
The following threading methods are now deprecated:

    threading.currentThread => threading.current_thread()

    threading.activeCount => threading.active_count()

    threading.Condition.notifyAll => threading.Condition.notify_all()

    threading.Event.isSet => threading.Event.is_set()

    threading.Thread.setName => threading.Thread.name

    threading.thread.getName => threading.Thread.name

    threading.Thread.isDaemon => threading.Thread.daemon

    threading.Thread.setDaemon => threading.Thread.daemon
"""


This is just a warning, but other packages might treat it as error and fail to build, see bz1959305.

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 2021-05-11 13:27:19 UTC
This also makes pytest fail to build with 3.10. I'll take it.

Comment 3 Miro Hrončok 2021-05-11 13:57:35 UTC
*** Bug 1959305 has been marked as a duplicate of this bug. ***