-
Notifications
You must be signed in to change notification settings - Fork 236
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The 'capture_output=True' was introduced in Python 3.7, while Enterprise Linux 8 is Python 3.6. Per report in Bodhi update: https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2023-45ace77fca
- Loading branch information
Showing
2 changed files
with
11 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
The fixes introduced in Mock 5.1 included a compatibility issue with Python in | ||
Enterprise Linux 8 due to a dependency on the `capture_output=True` feature in | ||
the `subprocess` module, which was added in Python 3.7. However, EL 8 is | ||
running on Python 3.6. This compatibility issue has been resolved in Mock by | ||
using `stdout=subprocess.PIPE` instead. This update was made based on a [report | ||
from Bodhi update](https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2023-45ace77fca). |