fedora-infra / mirrormanager2

Rewrite of the MirrorManager application in Flask and SQLAlchemy
https://mirrormanager.fedoraproject.org
GNU General Public License v2.0
63 stars 46 forks source link

yum 3 will be deprecated in Fedora 29 #251

Closed adrianreber closed 5 years ago

adrianreber commented 6 years ago

According to https://pagure.io/releng/issue/7588 yum 3 will be deprecated in Fedora 29.

Mirrormanager currently does at least in four files:

import yum.repoMDObject

Need to figure out if this still works with DNF.

Conan-Kudo commented 6 years ago

This does not work in DNF. There is pyrpmmd which provides that exact API for Python 2 and Python 3.

Alternatively, you can use librepo's Python bindings.

adrianreber commented 6 years ago

@Conan-Kudo thanks for the pointers, good to know