Skip to content

Commit 5560926

Browse files
authored
Merge pull request #743 from pulp/update-ci/3.12
Update CI files for branch 3.12
2 parents 09e284b + 378917a commit 5560926

File tree

4 files changed

+15
-6
lines changed

4 files changed

+15
-6
lines changed

.ci/ansible/Containerfile.j2

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ADD ./{{ item.name }} ./{{ item.name }}
1212
# This MUST be the ONLY call to pip install in inside the container.
1313
RUN pip3 install --upgrade pip setuptools wheel && \
1414
rm -rf /root/.cache/pip && \
15-
pip3 install pipdeptree
15+
pip3 install
1616
{%- if s3_test | default(false) -%}
1717
{{ " " }}git+https://github.com/gerrod3/botocore.git@fix-100-continue
1818
{%- endif -%}
@@ -28,7 +28,8 @@ RUN pip3 install --upgrade pip setuptools wheel && \
2828
{{ " " }}-r ./{{ item.name }}/ci_requirements.txt
2929
{%- endif -%}
3030
{%- endfor %}
31-
{{ " " }}-c ./{{ plugins[0].name }}/.ci/assets/ci_constraints.txt && \
31+
{{ " " }}-c ./{{ plugins[0].name }}/.ci/assets/ci_constraints.txt \
32+
pipdeptree && \
3233
rm -rf /root/.cache/pip
3334

3435
{% if pulp_env is defined and pulp_env %}

.ci/assets/ci_constraints.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,8 @@ pulpcore>=3.21.30,!=3.23.*,!=3.24.*,!=3.25.*,!=3.26.*,!=3.27.*,!=3.29.*,!=3.30.*
55

66
tablib!=3.6.0
77
# 3.6.0: This release introduced a regression removing the "html" optional dependency.
8+
9+
10+
11+
# Newer version seem to have a conflict around packaging, that pip fails to resolve in time. Remove this when this starts to impose an issue.
12+
pipdeptree<=3.23.1

.ci/scripts/pr_labels.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,12 @@ def main():
1818
BLOCKING_REGEX = re.compile(r"DRAFT|WIP|NO\s*MERGE|DO\s*NOT\s*MERGE|EXPERIMENT")
1919
ISSUE_REGEX = re.compile(r"(?:fixes|closes)[\s:]+#(\d+)")
2020
CHERRY_PICK_REGEX = re.compile(r"^\s*\(cherry picked from commit [0-9a-f]*\)\s*$")
21-
CHANGELOG_EXTS = [
22-
f".{item['directory']}" for item in PYPROJECT_TOML["tool"]["towncrier"]["type"]
23-
]
21+
try:
22+
CHANGELOG_EXTS = {
23+
f".{item['directory']}" for item in PYPROJECT_TOML["tool"]["towncrier"]["type"]
24+
}
25+
except KeyError:
26+
CHANGELOG_EXTS = {"feature", "bugfix", "doc", "removal", "misc"}
2427

2528
repo = Repo(".")
2629

.github/template_gitref

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2021.08.26-382-gc88324b
1+
2021.08.26-383-gc4cd2b8

0 commit comments

Comments
 (0)