From 83dfa63035f86cff13f68b8ed3e979b0cb372b1a Mon Sep 17 00:00:00 2001 From: gyulaid Date: Mon, 18 Apr 2022 15:37:59 +0200 Subject: [PATCH] #23 PackageMananger for virtualenv --- alice-ci/setup.cfg | 4 ---- alice-ci/src/alice/runners/pythonrunner.py | 3 ++- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/alice-ci/setup.cfg b/alice-ci/setup.cfg index cf915bc..8c1f9c8 100644 --- a/alice-ci/setup.cfg +++ b/alice-ci/setup.cfg @@ -22,12 +22,8 @@ packages = python_requires = >=3.6 install_requires = PyYAML - virtualenv docker [options.entry_points] console_scripts = alice = alice.cli:main - -#[options.packages.find] -#where = src \ No newline at end of file diff --git a/alice-ci/src/alice/runners/pythonrunner.py b/alice-ci/src/alice/runners/pythonrunner.py index 07f8a8c..ea1351a 100644 --- a/alice-ci/src/alice/runners/pythonrunner.py +++ b/alice-ci/src/alice/runners/pythonrunner.py @@ -5,7 +5,7 @@ import sys import shlex from ..exceptions import NonZeroRetcode, RunnerError, ConfigException -from .pyutils import glob_command +from .pyutils import PackageManager, glob_command # TODO: Handle config like PyPiConfig @@ -15,6 +15,7 @@ class PythonRunner: self.workdir = config["workdir"] self.virtual_dir = os.path.abspath(os.path.join(self.workdir, "venv")) self.config = config + PackageManager.getInstance().ensure("build") self.__init_venv() def __init_venv(self):