Skip to content

Commit

Permalink
Add support for version 11.1.2-b1 in parse_version function
Browse files Browse the repository at this point in the history
  • Loading branch information
cdot65 committed Mar 19, 2024
1 parent 2a78a4d commit 5ec0062
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tests/test_parse_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
("1.0.0", (1, 0, 0, 0)),
("2.5.3", (2, 5, 3, 0)),
("4.2.0-h1", (4, 2, 0, 1)),
("11.1.2-b1", (11, 1, 2, 1)),
("3.10.4-h2", (3, 10, 4, 2)),
("0.9.0-h0", (0, 9, 0, 0)),
("6.3.5-c1", (6, 3, 5, 1)),
Expand Down

0 comments on commit 5ec0062

Please sign in to comment.