Skip to content

Commit 0277182

Browse files
authored
Support parsing python pre-release versions (#3)
* Support parsing python pre-release versions * another python version format * dont error on epipe (#2) * dont error on epipe * formatted * Add docs and reduce to a single python regex * formatting * remove only flag * more python version tests * update docs
1 parent 3e7b4e2 commit 0277182

File tree

2 files changed

+42
-1
lines changed

2 files changed

+42
-1
lines changed

src/parse.test.ts

+19
Original file line numberDiff line numberDiff line change
@@ -42,3 +42,22 @@ Deno.test({
4242
assertEquals(parse(v), v);
4343
},
4444
});
45+
46+
const pythonVersions = [
47+
["0.13.1a0", "0.13.1-a.0"],
48+
["0.13.1b0", "0.13.1-b.0"],
49+
["0.13.1rc0", "0.13.1-rc.0"],
50+
["0.13.1.dev0", "0.13.1-dev.0"],
51+
["0.13.1.post0", "0.13.1-post.0"],
52+
];
53+
54+
for (let i = 0; i < pythonVersions.length; i++) {
55+
const [input, expected] = pythonVersions[i];
56+
Deno.test({
57+
name: `PY${i.toString().padStart(2, "0")}`,
58+
fn: () => {
59+
const v = parse(input);
60+
assertEquals(v.toString(), expected);
61+
},
62+
});
63+
}

src/parse.ts

+23-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,29 @@ export function parse(version: Version): SemVer {
55
if (version instanceof semver.SemVer) {
66
return version;
77
}
8-
const versionString = version.toString();
8+
let versionString = version.toString().trim();
9+
10+
// Python version documentation:
11+
// https://peps.python.org/pep-0440/#public-version-identifiers
12+
//
13+
// supports converting _most_ python versions into common semver
14+
// [N!]N(.N)*[{a|b|rc}N][.postN][.devN]
15+
//
16+
// | example | result |
17+
// | ------------ | ------------- |
18+
// | 0.13.1a0 | 0.13.1-a.0 |
19+
// | 0.13.1b0 | 0.13.1-b.0 |
20+
// | 0.13.1rc0 | 0.13.1-rc.0 |
21+
// | 0.13.1.dev0 | 0.13.1-dev.0 |
22+
// | 0.13.1.post0 | 0.13.1-post.0 |
23+
//
24+
const py = versionString.match(
25+
/^(\d+)[.](\d+)[.](\d+)[.]?(a|b|rc|dev|post)(\d+)$/,
26+
);
27+
if (py) {
28+
const [, major, minor, patch, pre, dev] = py;
29+
versionString = `${major}.${minor}.${patch}-${pre}.${dev}`;
30+
}
931

1032
// supports converting partial versions such as 1, 1.0 into valid semantic versions.
1133
const parsed = semver.parse(versionString) ??

0 commit comments

Comments
 (0)