commit: 44b76f316051b8b0094385a12c0558194fd84339
Author: Brian Harring <ferringb <AT> gmail <DOT> com>
AuthorDate: Sun Nov 9 12:52:51 2025 +0000
Commit: Brian Harring <ferringb <AT> gmail <DOT> com>
CommitDate: Sun Nov 9 12:52:51 2025 +0000
URL:
https://gitweb.gentoo.org/proj/pkgcore/snakeoil.git/commit/?id=44b76f31
chore: add more deps to the VCS release check
Signed-off-by: Brian Harring <ferringb <AT> gmail.com>
.github/workflows/release.yml | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index e5cf117..612b413 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -23,12 +23,13 @@ jobs:
shell: python
run: |
import re, tomllib
- deps = tomllib.load(open('pyproject.toml',
'rb'))['build-system']['requires']
+ manifest = tomllib.load(open('pyproject.toml', 'rb'))
+ deps = manifest['build-system']['requires']
+ deps.extend(manifest['project']['dependencies'])
if rejects := list(filter(re.compile(r'@[^+]+').search, deps)):
rejects = " \n".join(sorted(rejects))
raise Exception(f'VCS dependencies were detected in
[build-system]:\n {rejects}')
-
- name: Set up Python 3.13
uses: actions/setup-python@v5
with: