https://bugzilla.redhat.com/show_bug.cgi?id=1612092 --- Comment #10 from Neal Gompa <ngompa13@xxxxxxxxx> --- > %if 0%{?fedora} > %{!?python3_pkgversion: %global python3_pkgversion 3} > %else > %{!?python3_pkgversion: %global python3_pkgversion 36} > %endif This conditional should be flipped, and you need to tweak this to actually work correctly in EPEL (right now, everything points to py34). The way that this should probably be done is: %if 0%{?epel} && 0%{?epel} < 8 # We need to force Python 3.6 in EPEL %global python3_pkgversion 36 %global __python3 /usr/bin/python3.6 %else %{!?python3_pkgversion: %global python3_pkgversion 3} %endif You're also missing the following at the top of the spec: %{?python_enable_dependency_generator} -- You are receiving this mail because: You are on the CC list for the bug. You are always notified about changes to this product and component _______________________________________________ package-review mailing list -- package-review@xxxxxxxxxxxxxxxxxxxxxxx To unsubscribe send an email to package-review-leave@xxxxxxxxxxxxxxxxxxxxxxx Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/package-review@xxxxxxxxxxxxxxxxxxxxxxx