blob: d819e8619244be06eefd5756d75d1e2c6a05b2c8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
from lib.nots.semver import Version
# it is crucial to keep this array sorted
SUPPORTED_NODE_VERSIONS = [
Version.from_str("12.18.4"),
Version.from_str("12.22.12"),
Version.from_str("14.21.1"),
Version.from_str("16.18.1"),
Version.from_str("18.12.1")
]
DEFAULT_NODE_VERSION = SUPPORTED_NODE_VERSIONS[0]
|