diff --git a/pyproject.toml b/pyproject.toml index 4367dac9f..80567db7d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ name = "aleph-vm" dynamic = ["version"] description = "Aleph.im VM execution engine" readme = "README.md" -requires-python = ">=3.10" +requires-python = ">=3.9.2" license = "MIT" keywords = [] authors = [ @@ -93,7 +93,7 @@ cov = [ ] [[tool.hatch.envs.all.matrix]] -python = ["3.10", "3.11", "3.12"] +python = ["3.9.2", "3.10", "3.11", "3.12"] [tool.hatch.envs.lint] detached = true diff --git a/src/aleph/vm/controllers/__main__.py b/src/aleph/vm/controllers/__main__.py index b6394a0fe..6ffc0f069 100644 --- a/src/aleph/vm/controllers/__main__.py +++ b/src/aleph/vm/controllers/__main__.py @@ -23,9 +23,9 @@ ) from aleph.vm.hypervisors.firecracker.microvm import MicroVMFailedInit -from aleph.vm.orchestrator.conf import settings, Settings +from aleph.vm.conf import settings, Settings from aleph.vm.orchestrator.pool import VmPool -from aleph.vm.orchestrator.utils import HostNotFoundError +from aleph.vm.utils import HostNotFoundError logger = logging.getLogger(__name__)