-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
versions: add support for version checks via pyproject.toml
* previously, only `Pipfile` was considered, which only supports `pipenv` but not `uv`
- Loading branch information
Showing
6 changed files
with
76 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
# -*- coding: utf-8 -*- | ||
# | ||
# This file is part of Invenio. | ||
# Copyright (C) 2022 CERN. | ||
# | ||
# Invenio is free software; you can redistribute it and/or modify it | ||
# under the terms of the MIT License; see LICENSE file for more details. | ||
|
||
"""Invenio CLI dependencies helper.""" | ||
|
||
import os | ||
import re | ||
import tomllib | ||
|
||
from packaging.requirements import Requirement | ||
from pipfile import Pipfile | ||
|
||
_version_pattern = re.compile(r"[0-9]*\.[0-9]*\.[0-9]*") | ||
|
||
|
||
def _parse_version(version): | ||
"""Parse a version identifier into a list of numbers.""" | ||
groups = _version_pattern.search(version) | ||
if groups: | ||
return [int(v) for v in groups.group(0).split(".")] | ||
else: | ||
return None | ||
|
||
|
||
def _from_pipfile(dep_name): | ||
"""Parse the stated dependency from the ``Pipfile``.""" | ||
parsed = Pipfile.load(filename="./Pipfile") | ||
version = (parsed.data["default"].get(dep_name, {}).get("version", ""),) | ||
return _parse_version(version) | ||
|
||
|
||
def _from_pyproject_toml(dep_name): | ||
"""Parse the stated dependency from ``pyproject.toml``.""" | ||
with open("./pyproject.toml", "rb") as toml_file: | ||
parsed = tomllib.load(toml_file) | ||
|
||
dependencies = [Requirement(d) for d in parsed["project"]["dependencies"]] | ||
app_rdms = [d for d in dependencies if d.name == "invenio-app-rdm"] | ||
if not app_rdms: | ||
return None | ||
|
||
# Get the first concrete positive version specifier | ||
v, *_ = [s for s in app_rdms[0].specifier if not s.operator.startswith("!")] | ||
return _parse_version(v.version) | ||
|
||
|
||
def rdm_version(): | ||
"""Return the latest RDM version.""" | ||
if os.path.isfile("./Pipfile"): | ||
return _from_pipfile("invenio-app-rdm") | ||
|
||
elif os.path.isfile("./pyproject.toml"): | ||
return _from_pyproject_toml("invenio-app-rdm") | ||
|
||
else: | ||
raise FileNotFoundError("Found neither 'Pipfile' nor 'pyproject.toml'") | ||
|
||
|
||
def ils_version(): | ||
"""Return the latest ILS version.""" | ||
if os.path.isfile("./Pipfile"): | ||
return _from_pipfile("invenio-app-ils") | ||
|
||
elif os.path.isfile("./pyproject.toml"): | ||
return _from_pyproject_toml("invenio-app-ils") | ||
|
||
else: | ||
raise FileNotFoundError("Found neither 'Pipfile' nor 'pyproject.toml'") |