(Quick Opt-Out: Say packagers need to file a bugzilla if they use the workaround) |
(Revert previous change, which managed to undo most of Miro's edits) |
||
Line 1: | Line 1: | ||
{{DISPLAYTITLE:Avoid /usr/bin/python in RPM build}} | {{DISPLAYTITLE:Avoid /usr/bin/python in RPM build}} | ||
== Summary == | == Summary == | ||
Line 32: | Line 30: | ||
=== Specification === | === Specification === | ||
Python 2, when called as <code>python</code> or <code>/usr/bin/python</code> at RPM build time (as identified by the <code>RPM_BUILD_ROOT</code> environment variable), will print a deprecation warning to <em>stderr</em>. | Python 2, when called as <code>python</code> or <code>/usr/bin/python</code> at RPM build time (as identified by the <code>RPM_BUILD_ROOT</code> environment variable), will print a deprecation warning to <em>stderr</em>. (Any program invoked during build that invokes <code>/usr/bin/python</code> will cause this warning as well.) | ||
A new Taskotron check will be implemented to look for this warning and fail if it's found. | A new Taskotron check will be implemented to look for this warning and fail if it's found. | ||
Line 57: | Line 55: | ||
=== Quick Opt-Out === | === Quick Opt-Out === | ||
In case switching to <code>/usr/bin/python2</code> or <code>/usr/bin/python3</code> is non-trivial, do | In case switching to <code>/usr/bin/python2</code> or <code>/usr/bin/python3</code> is non-trivial, you can do two things (preferably both): | ||
* Set the environment variable <code>DISABLE_AMBIGUOUS_PYTHON_VERSION_WARNING=1</code> when calling <code>/usr/bin/python</code> | * Set the environment variable <code>DISABLE_AMBIGUOUS_PYTHON_VERSION_WARNING=1</code> when calling <code>/usr/bin/python</code> | ||
Line 73: | Line 71: | ||
== Scope == | == Scope == | ||
* Proposal owners: Patch <code>python2</code>, write the Taskotron check, deal with warnings and failures. | * Proposal owners: Patch <code>python2</code>, write the Taskotron check, deal with warnings and failures. | ||
* Other developers: Switch to using <code>/usr/bin/python3</code> or <code>/usr/bin/python2</code> explicitly at RPM build time (with help from Proposal owners if needed). | * Other developers: Switch to using <code>/usr/bin/python3</code> or <code>/usr/bin/python2</code> explicitly at RPM build time (with help from Proposal owners if needed). Also tools that are invoked during build time of other packages that themselves use <code>/usr/bin/python</code> will need to be fixed. | ||
* Release engineering: N/A <!-- [https://pagure.io/releng/issues #Releng issue number] (XXX: a check of an impact with Release Engineering is needed) --> (Note: Depending on the timing, separate targeted rebuilds may be needed, but we can do these as Proven Packagers) <!-- REQUIRED FOR SYSTEM WIDE AS WELL AS FOR SELF CONTAINED CHANGES --> | * Release engineering: N/A <!-- [https://pagure.io/releng/issues #Releng issue number] (XXX: a check of an impact with Release Engineering is needed) --> (Note: Depending on the timing, separate targeted rebuilds may be needed, but we can do these as Proven Packagers, no side-tags are required) <!-- REQUIRED FOR SYSTEM WIDE AS WELL AS FOR SELF CONTAINED CHANGES --> | ||
** [[Fedora_Program_Management/ReleaseBlocking/Fedora{{FedoraVersionNumber|next}}|List of deliverables]]: N/A | ** [[Fedora_Program_Management/ReleaseBlocking/Fedora{{FedoraVersionNumber|next}}|List of deliverables]]: N/A | ||
* Policies and guidelines: | * Policies and guidelines: Already existing "packages in Fedora ... MUST call the proper executable for the needed python major version directly, either <code>/usr/bin/python2</code> or <code>/usr/bin/python3</code> as appropriate" from [[Packaging:Python#Multiple_Python_Runtimes]] | ||
<!-- Do the packaging guidelines or other documents need to be updated for this feature? If so, does it need to happen before or after the implementation is done? If a FPC ticket exists, add a link here. --> | <!-- Do the packaging guidelines or other documents need to be updated for this feature? If so, does it need to happen before or after the implementation is done? If a FPC ticket exists, add a link here. --> | ||
* Trademark approval: N/A (not needed for this Change) | * Trademark approval: N/A (not needed for this Change) | ||
Line 85: | Line 83: | ||
== How To Test == | == How To Test == | ||
* Build a package that invokes <code>/usr/bin/python</code>, <code>python</code> or <code>%{__python}</code> | * Build a package that invokes <code>/usr/bin/python</code>, <code>python</code> or <code>%{__python}</code> (even transitively trough <code>%{python_sitelib}</code> etc.) in any section of the specfile that is executed during the build. | ||
* Observe a warning in the build logs | * Observe a warning in the build logs | ||
* If already enabled system-wide: observe that the build fails | * If already enabled system-wide: observe that the build fails | ||
Line 98: | Line 96: | ||
== Contingency Plan == | == Contingency Plan == | ||
* Contingency mechanism: If something goes unexpectedly wrong, and the workaround above doesn't work, the patch to <code>python2</code> will be reverted. Any packages already changed due to the warning will remain changed. | * Contingency mechanism: If something goes unexpectedly wrong, and the workaround above doesn't work, the patch to <code>python2</code> will be reverted. Any packages already changed due to the warning will remain changed. If everything goes smoothly, but there is still a significant number of packages failing the check, the switch that would render all of them FTBFS will happen in the next release. | ||
* Contingency deadline: Beta Freeze (or any time this causes a FTBFS that can't be solved promptly) | * Contingency deadline: Beta Freeze (or any time this causes a FTBFS that can't be solved promptly) | ||
* Blocks release? No | * Blocks release? No | ||
Line 110: | Line 108: | ||
[[Category:ChangePageIncomplete]] | |||
<!-- When your change proposal page is completed and ready for review and announcement --> | <!-- When your change proposal page is completed and ready for review and announcement --> | ||
<!-- remove Category:ChangePageIncomplete and change it to Category:ChangeReadyForWrangler --> | <!-- remove Category:ChangePageIncomplete and change it to Category:ChangeReadyForWrangler --> | ||
Line 118: | Line 115: | ||
<!-- Select proper category, default is Self Contained Change --> | <!-- Select proper category, default is Self Contained Change --> | ||
[[Category:SelfContainedChange]] | |||
<!-- [[Category:SystemWideChange]] --> | <!-- [[Category:SystemWideChange]] --> |
Revision as of 16:34, 5 January 2018
Summary
Deprecate, and later disable, running /usr/bin/python
(as opposed to /usr/bin/python3
or /usr/bin/python2
) during RPM build.
Changes will be driven by Python SIG, but a few packages may fail to build (with the failure message providing an easy workaround).
Owner
- Name: Petr Viktorin
- Name: Miro Hrončok
- Email: python-devel at lists.fedoraproject.org
Detailed Description
Motivation
Currently in Fedora (package names, executable names, etc.), python
means Python 2.
We would like to change it to mean Python 3, but to do that, we need to free it of the current meaning.
This means explicitly using either "python2" or "python3" throughout Fedora.
This is a multi-release effort tracked in Python SIG's "Finalizing Fedora Switch to Python3" document.
This page describes a very focused subset of it.
Renaming packages (and associated changes to, for example, Requires:
directives) is relatively straightforward, but making all Fedora-provided code avoid /usr/bin/python
(as opposed to /usr/bin/python2
) is both harder to achieve and harder to keep track of.
We would like to start deprecating /usr/bin/python
(as opposed to /usr/bin/python2
) at RPM build time.
RPM build is a controlled environment: changes to it will not be felt by end users, breakages are almost immediately visible, and output of Koji builds can be nicely tracked and analyzed.
Specification
Python 2, when called as python
or /usr/bin/python
at RPM build time (as identified by the RPM_BUILD_ROOT
environment variable), will print a deprecation warning to stderr. (Any program invoked during build that invokes /usr/bin/python
will cause this warning as well.)
A new Taskotron check will be implemented to look for this warning and fail if it's found. We will look at the Taskotron results and work with packagers to switch to update the affected packages. (We'll look at the results to determine if we'll use automated pull requests, mass bug filing, or something else.)
The warning itself may cause some packages to fail to build, for example if a test relies on exact stderr contents. For these cases, it will be possible to turn the warning off using an environment variable, but we ask packagers that use of this workaround is tracked in Bugzilla. See #Quick Opt-Out below.
After all packages that BuildRequire python2 are re-built with this check passing, python
will be switched to fail after printing the message.
The warning will not be effective if stderr output is hidden. So, after switching /usr/bin/python
to fail, some packages may start failing to build. We will work with the packagers to fix these. (We'll look at results from the "warnings phase" to see how proactive we'll need to be here.)
The warning text will be:
DEPRECATION WARNING: python2 invoked with /usr/bin/python. Use /usr/bin/python3 or /usr/bin/python2 /usr/bin/python will be removed or switched to Python 3 in the future. If you cannot make the switch now, please follow instructions at https://fedoraproject.org/wiki/XXX#Quick_Opt-Out
(Using the Wiki link allows us to easily revise the instructions.)
Quick Opt-Out
In case switching to /usr/bin/python2
or /usr/bin/python3
is non-trivial, you can do two things (preferably both):
- Set the environment variable
DISABLE_AMBIGUOUS_PYTHON_VERSION_WARNING=1
when calling/usr/bin/python
- File a Bugzilla, and make it block our tracking bug (XXX - link)
All such bugs will need to be fixed before we make /usr/bin/python
fail hard.
Benefit to Fedora
This change brings us one step closer to a seamless transition to Python 3.
Also, we hope to gain experience with changing packages to avoid /usr/bin/python
, to prepare us for making user-visible changes later.
Scope
- Proposal owners: Patch
python2
, write the Taskotron check, deal with warnings and failures. - Other developers: Switch to using
/usr/bin/python3
or/usr/bin/python2
explicitly at RPM build time (with help from Proposal owners if needed). Also tools that are invoked during build time of other packages that themselves use/usr/bin/python
will need to be fixed. - Release engineering: N/A (Note: Depending on the timing, separate targeted rebuilds may be needed, but we can do these as Proven Packagers, no side-tags are required)
- List of deliverables: N/A
- Policies and guidelines: Already existing "packages in Fedora ... MUST call the proper executable for the needed python major version directly, either
/usr/bin/python2
or/usr/bin/python3
as appropriate" from Packaging:Python#Multiple_Python_Runtimes - Trademark approval: N/A (not needed for this Change)
Upgrade/compatibility impact
N/A (the effect is at RPM build time only)
How To Test
- Build a package that invokes
/usr/bin/python
,python
or%{__python}
(even transitively trough%{python_sitelib}
etc.) in any section of the specfile that is executed during the build. - Observe a warning in the build logs
- If already enabled system-wide: observe that the build fails
- Look at XXX to see a failed Taskotron check
User Experience
N/A – does not affect end users
Dependencies
May affect packages that use Python 2 to build (including in tests). Any breakage should be minimal, with an easy workaround if things go wrong.
Contingency Plan
- Contingency mechanism: If something goes unexpectedly wrong, and the workaround above doesn't work, the patch to
python2
will be reverted. Any packages already changed due to the warning will remain changed. If everything goes smoothly, but there is still a significant number of packages failing the check, the switch that would render all of them FTBFS will happen in the next release. - Contingency deadline: Beta Freeze (or any time this causes a FTBFS that can't be solved promptly)
- Blocks release? No
- Blocks product? None
Documentation
This page is the documentation.
Release Notes
N/A (Not an end-user visible change)