There was an error while loading. Please reload this page.
1 parent 386711f commit d75b95cCopy full SHA for d75b95c
2 files changed
abxpkg/binprovider.py
@@ -3634,6 +3634,13 @@ def _get_projected_version(
3634
bin_name: BinName,
3635
projected_abspath: HostBinPath,
3636
) -> SemVer | None:
3637
+ if str(bin_name) == "brew":
3638
+ return self.get_version(
3639
+ bin_name,
3640
+ abspath=projected_abspath,
3641
+ quiet=True,
3642
+ no_cache=True,
3643
+ )
3644
projected_path = Path(projected_abspath).absolute()
3645
token = ENV_PROJECTED_VERSION_PATH.set(projected_path)
3646
try:
pyproject.toml
@@ -1,6 +1,6 @@
1
[project]
2
name = "abxpkg"
3
-version = "1.11.281"
+version = "1.11.282"
4
description = "System package manager interfaces with Python type hints"
5
authors = [{name = "Nick Sweeting"}, {name = "ArchiveBox"}]
6
requires-python = ">=3.12,<3.15"
0 commit comments