python3-wheel: version bump to 0.44.0

This commit is contained in:
suvari
2024-08-14 20:26:16 +03:00
parent 3ce9c66e82
commit bd57b04d39
2 changed files with 27 additions and 9 deletions
@@ -1,13 +1,19 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/copyleft/gpl.txt.
# See the file http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import pythonmodules
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
from pisi.actionsapi import get
def build():
pythonmodules.compile(pyVer="3")
shelltools.system("python3 -m build -wn --skip-dependency-check")
def install():
pythonmodules.install(pyVer="3")
shelltools.system("PIP_CONFIG_FILE=/dev/null pip3 install --isolated --root=%s --ignore-installed --no-deps dist/*.whl" % get.installDIR())
pisitools.dodoc("LICENSE*", "README*")