actions.py: make compact.
This commit is contained in:
@@ -4,12 +4,13 @@
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
|
||||
|
||||
from pisi.actionsapi import pythonmodules, shelltools, get
|
||||
from pisi.actionsapi import pythonmodules as py3, shelltools, get
|
||||
|
||||
t = "dist/importlib_metadata-5.0.0-py3-none-any.whl"
|
||||
shelltools.export("SETUPTOOLS_SCM_PRETEND_VERSION", "5.0.0")
|
||||
|
||||
def build():
|
||||
pythonmodules.run("-m build", pyVer = '3')
|
||||
py3.run("-m build", pyVer = '3')
|
||||
|
||||
def install():
|
||||
pythonmodules.run("-m installer -d %s dist/importlib_metadata-5.0.0-py3-none-any.whl" % get.installDIR(), pyVer = '3')
|
||||
py3.run("-m installer -d %s %s" % (get.installDIR(), t), pyVer = '3')
|
||||
|
||||
Reference in New Issue
Block a user