Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update CI files from 0.17 branch #1459

Merged
merged 1 commit into from
May 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions .ci/scripts/check_requirements.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,12 @@
else:
errors.append(f"{filename}:{nr}: Unreadable requirement {line}")
else:
if check_prereleases and req.specifier.prereleases:
if req.name != "pulp-ansible-client":
errors.append(f"{filename}:{nr}: Prerelease versions found in {line}.")
if not line.startswith("opentelemetry"):
if check_prereleases and req.specifier.prereleases:
if req.name != "pulp-ansible-client":
errors.append(
f"{filename}:{nr}: Prerelease versions found in {line}."
)
ops = [op for op, ver in req.specs]
spec = str(req.specs)
if "~=" in ops:
Expand Down
2 changes: 1 addition & 1 deletion .github/template_gitref
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2021.08.26-213-ge6bd9ec
2021.08.26-214-gf2ffaa4
Loading