8626a84444fc26a173b4c20204909376bd19f323
If we don't sometimes we can get issues. For example right now importing from libpagure import Pagure in python3 won't work. I'm not sure what package fixes the problem but after a dnf update everything works.
from libpagure import Pagure
for example, here is the error I'm seeing:
[root@f567dc2f3b0b libpagure]# python3 Python 3.7.4 (default, Jul 9 2019, 16:32:37) [GCC 9.1.1 20190503 (Red Hat 9.1.1-1)] on linux Type "help", "copyright", "credits" or "license" for more information. >>> from libpagure import Pagure Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/usr/lib/python3.7/site-packages/libpagure/libpagure.py", line 6, in <module> from .exceptions import APIError
cc @mohanboddu
LGTM
Pull-Request has been merged by mohanboddu
If we don't sometimes we can get issues. For example right now
importing
from libpagure import Pagurein python3 won't work.I'm not sure what package fixes the problem but after a dnf update
everything works.