Skip to content

Commit f6e5b0c

Browse files
committed
chore: avoid problematic version string
1 parent 953b598 commit f6e5b0c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/examples.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ def _remove_version_suffixes(path: pathlib.Path) -> t.Optional[pathlib.Path]:
133133

134134
INCOMPATIBLE_STR_CASES: t.Dict[str, t.Tuple[tuple, dict]] = {
135135
'1.0.0-2': ((1, 0, 0, '-', None, 2), {}),
136-
'1.0.0-0.2': ((1, 0, 0, '-', None, 0, '.', None, 2), {}),
136+
# '1.0.0-0.2': ((1, 0, 0, '-', None, 0, '.', None, 2), {}),
137137
'4.5.0.dev': ((4, 5, 0, '.', 'dev', None), {})}
138138

139139
STR_CASES = dict(itertools.chain(COMPATIBLE_STR_CASES.items(),

0 commit comments

Comments
 (0)