Repository URL to install this package:
|
Version:
1.3.2 ▾
|
from __future__ import annotations
from poetry.core.constraints.version.patterns import BASIC_CONSTRAINT
from poetry.core.constraints.version.patterns import CARET_CONSTRAINT
from poetry.core.constraints.version.patterns import COMPLETE_VERSION
from poetry.core.constraints.version.patterns import TILDE_CONSTRAINT
from poetry.core.constraints.version.patterns import TILDE_PEP440_CONSTRAINT
from poetry.core.constraints.version.patterns import X_CONSTRAINT
__all__ = [
"COMPLETE_VERSION",
"CARET_CONSTRAINT",
"TILDE_CONSTRAINT",
"TILDE_PEP440_CONSTRAINT",
"X_CONSTRAINT",
"BASIC_CONSTRAINT",
]