Skip to content

Commit 3821654

Browse files
committed
fix release_check
1 parent 42c957d commit 3821654

File tree

2 files changed

+10
-13
lines changed

2 files changed

+10
-13
lines changed

.ci/release_check.py

+7-12
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Ensure that current version is not in conflict with published releases."""
22

3-
from iminuit._parse_version import parse_version
3+
from packaging.version import Version
44
import subprocess as subp
55
from pathlib import PurePath
66
import urllib.request
@@ -9,37 +9,32 @@
99
import sys
1010

1111

12-
def version_string(v):
13-
return ".".join(map(str, v))
14-
15-
1612
project_dir = PurePath(__file__).parent.parent
1713
changelog_fn = project_dir / "doc/changelog.rst"
1814
version_fn = project_dir / "version.py"
1915

2016
version = subp.check_output([sys.executable, version_fn]).strip().decode()
2117

2218
with warnings.catch_warnings(record=True) as record:
23-
iminuit_version = parse_version(version)
19+
iminuit_version = Version(version)
2420
if record:
2521
raise ValueError(record[0].message)
2622

27-
iminuit_version_string = version_string(iminuit_version)
28-
print("iminuit version:", iminuit_version_string)
23+
print("iminuit version:", iminuit_version)
2924

3025
# make sure that changelog was updated
3126
with open(changelog_fn) as f:
32-
assert iminuit_version_string in f.read(), "changelog entry missing"
27+
assert iminuit_version.base_version in f.read(), "changelog entry missing"
3328

3429
# make sure that version is not already tagged
3530
tags = subp.check_output(["git", "tag"]).decode().strip().split("\n")
36-
assert f"v{iminuit_version_string}" not in tags, "tag exists"
31+
assert f"v{iminuit_version}" not in tags, "tag exists"
3732

3833
# make sure that version itself was updated
3934
with urllib.request.urlopen("https://pypi.org/pypi/iminuit/json") as r:
40-
pypi_versions = [parse_version(v) for v in json.loads(r.read())["releases"]]
35+
pypi_versions = [Version(v) for v in json.loads(r.read())["releases"]]
4136

4237
pypi_versions.sort()
43-
print("PyPI version:", version_string(pypi_versions[-1]))
38+
print("PyPI version:", pypi_versions[-1])
4439

4540
assert iminuit_version not in pypi_versions, "pypi version exists"

.github/workflows/release.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@ jobs:
2828
python-version: '3.11'
2929

3030
- if: ${{ github.ref == 'refs/heads/main' }}
31-
run: python .ci/release_check.py
31+
run: |
32+
pip install packaging
33+
python .ci/release_check.py
3234
3335
- id: tag
3436
run: echo "tag=$(python version.py)" >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)