Improve terminology in project-config tree
There is no real reason we should be using some of the terms we do, they're outdated, and we're behind other open-source projects in this respect. Let's switch to using more inclusive terms in all possible places. Updated playbooks and related code accordingly. Change-Id: Ia471193921660aa5f2152ab63eaf570bee3ebcd0 Depends-on: https://review.opendev.org/c/openstack/requirements/+/917786
This commit is contained in:
parent
f0cde8e841
commit
8da1051e0b
@ -36,7 +36,7 @@ elif [ "$OWN_PROJECT" == "requirements-constraints" ] ; then
|
||||
VENV=$(readlink -f .tox/venv)
|
||||
$VENV/bin/pip install -e .
|
||||
function update {
|
||||
$VENV/bin/generate-constraints -b blacklist.txt -p /usr/bin/python3.10 \
|
||||
$VENV/bin/generate-constraints -d denylist.txt -p /usr/bin/python3.10 \
|
||||
--version-map 3.10:3.9 \
|
||||
-r global-requirements.txt > $1/upper-constraints.txt
|
||||
}
|
||||
|
@ -4,7 +4,7 @@
|
||||
WHEELHOUSE_DIR=$1
|
||||
MIRROR_ROOT=$2
|
||||
|
||||
# Pre-filter any blacklisted package name patterns
|
||||
# Pre-filter any denylisted package name patterns
|
||||
find "$WHEELHOUSE_DIR/" '(' \
|
||||
-name "pip-*-none-any.whl" -o \
|
||||
-name "setuptools-*-none-any.whl" -o \
|
||||
|
@ -83,11 +83,11 @@ def check_release_jobs():
|
||||
return errors
|
||||
|
||||
|
||||
def blacklist_jobs():
|
||||
def denylist_jobs():
|
||||
"""Check that certain jobs and templates are *not* used."""
|
||||
|
||||
# Currently only handles templates
|
||||
blacklist_templates = [
|
||||
denylist_templates = [
|
||||
'system-required'
|
||||
]
|
||||
|
||||
@ -103,7 +103,7 @@ def blacklist_jobs():
|
||||
if name.startswith("^(airship|"):
|
||||
continue
|
||||
found = [tmpl for tmpl in project.get('templates', [])
|
||||
if tmpl in blacklist_templates]
|
||||
if tmpl in denylist_templates]
|
||||
if found:
|
||||
errors = True
|
||||
print(" ERROR: Found obsolete template for %s:" % name)
|
||||
@ -193,7 +193,7 @@ def check_only_boilerplate():
|
||||
def check_all():
|
||||
|
||||
errors = check_projects_sorted()
|
||||
errors = blacklist_jobs() or errors
|
||||
errors = denylist_jobs() or errors
|
||||
errors = check_release_jobs() or errors
|
||||
errors = check_voting() or errors
|
||||
errors = check_only_boilerplate() or errors
|
||||
|
Loading…
Reference in New Issue
Block a user