mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-08-02 08:18:25 +02:00
[core] plugins: Add ProcessEnvType
enum class
This commit is contained in:
parent
adae26d573
commit
97f2e0f198
1 changed files with 8 additions and 0 deletions
|
@ -46,6 +46,14 @@ def validateNodeDesc(nodeDesc: desc.Node) -> list:
|
||||||
return errors
|
return errors
|
||||||
|
|
||||||
|
|
||||||
|
class ProcessEnvType(Enum):
|
||||||
|
""" Supported process environments. """
|
||||||
|
DEFAULT = "default",
|
||||||
|
CONDA = "conda",
|
||||||
|
VIRTUALENV = "virtualenv",
|
||||||
|
REZ = "rez"
|
||||||
|
|
||||||
|
|
||||||
class ProcessEnv(BaseObject):
|
class ProcessEnv(BaseObject):
|
||||||
"""
|
"""
|
||||||
Describes the environment required by a node's process.
|
Describes the environment required by a node's process.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue