Skip to content
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
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ RECEPTOR_IMAGE ?= quay.io/ansible/receptor:devel
SRC_ONLY_PKGS ?= cffi,pycparser,psycopg,twilio
# These should be upgraded in the AWX and Ansible venv before attempting
# to install the actual requirements
VENV_BOOTSTRAP ?= pip==25.3 setuptools==80.9.0 setuptools_scm[toml]==9.2.2 wheel==0.46.2
VENV_BOOTSTRAP ?= pip==26.0.1 setuptools==80.9.0 setuptools_scm[toml]==9.2.2 wheel==0.46.2

NAME ?= awx

Expand Down
2 changes: 1 addition & 1 deletion requirements/requirements.in
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ uWSGI>=2.0.22 # CVE-2023-27522
uwsgitop
valkey[libvalkey]
wheel>=0.46.2 # CVE-2026-24049
pip==25.3 # see CVE-2025-8869
pip==26.0.1 # see CVE-2026-1703
setuptools==80.9.0 # CVE-2025-47273
setuptools-scm[toml] # see UPGRADE BLOCKERs, xmlsec build dep
setuptools-rust>=0.11.4 # cryptography build dep
Expand Down
2 changes: 1 addition & 1 deletion requirements/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -521,7 +521,7 @@ zope-interface==7.0.3
# via twisted

# The following packages are considered to be unsafe in a requirements file:
pip==25.3
pip==26.0.1
# via -r /awx_devel/requirements/requirements.in
setuptools==80.9.0
# via
Expand Down
2 changes: 1 addition & 1 deletion requirements/updater.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ generate_requirements() {
source "${venv}/bin/activate"

# pip / setuptools version must match the version used in AWX venv (see README.md UPGRADE BLOCKERs)
"${venv}/bin/python3" -m pip install -U 'pip==25.3' 'setuptools==80.9.0' pip-tools
"${venv}/bin/python3" -m pip install -U 'pip==26.0.1' 'setuptools==80.9.0' pip-tools

${pip_compile} ${input_reqs} --output-file requirements.txt
# consider the git requirements for purposes of resolving deps
Expand Down