mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-07-17 00:35:19 +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
|
||||
|
||||
|
||||
class ProcessEnvType(Enum):
|
||||
""" Supported process environments. """
|
||||
DEFAULT = "default",
|
||||
CONDA = "conda",
|
||||
VIRTUALENV = "virtualenv",
|
||||
REZ = "rez"
|
||||
|
||||
|
||||
class ProcessEnv(BaseObject):
|
||||
"""
|
||||
Describes the environment required by a node's process.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue