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 base/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ COPY switch_python /usr/bin/switch_python
ARG PYTHON_VERSION=3.11
RUN switch_python "$PYTHON_VERSION"

RUN pip3 install -r dev_requirements.txt
RUN uv pip install -r dev_requirements.txt

RUN dnf -y install gettext

Expand Down
2 changes: 1 addition & 1 deletion base/container_scripts/install_client.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ declare PROJECT="$1"
cd "/src/pulp-openapi-generator/$PROJECT-client"

# Editable installs are currently broken for the new client
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

How old is this comment and is it still true?

Copy link
Copy Markdown
Contributor

@dralley dralley Apr 16, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

answer: about a year old gerrod3@4ab666f

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It is still true, not sure why and the AI did not figure it out either.

pip install .
uv pip install .
2 changes: 1 addition & 1 deletion base/container_scripts/install_functional_requirements.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ fi
cd "/src/${PROJECT}/"

if [[ -f functest_requirements.txt ]]; then
pip3 install -r functest_requirements.txt
uv pip install -r functest_requirements.txt
fi
2 changes: 1 addition & 1 deletion base/container_scripts/install_lint_requirements.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ fi
cd "/src/${PROJECT}/"

if [[ -f lint_requirements.txt ]]; then
pip install -r lint_requirements.txt
uv pip install -r lint_requirements.txt
fi
4 changes: 2 additions & 2 deletions base/container_scripts/install_performance_requirements.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ fi
cd "/src/${PROJECT}/"

if [[ -f perftest_requirements.txt ]]; then
pip install -r perftest_requirements.txt
uv pip install -r perftest_requirements.txt
elif [[ -f functest_requirements.txt ]]; then
pip install -r functest_requirements.txt
uv pip install -r functest_requirements.txt
fi
2 changes: 1 addition & 1 deletion base/container_scripts/install_unit_requirements.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ fi
cd "/src/${PROJECT}/"

if [[ -f unittest_requirements.txt ]]; then
pip install -r unittest_requirements.txt
uv pip install -r unittest_requirements.txt
fi
2 changes: 1 addition & 1 deletion base/container_scripts/show_urls.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

# this gives us the show_urls django command
pip show django-extensions || pip install django-extensions
uv pip show django-extensions || uv pip install django-extensions

pulpcore-manager show_urls
2 changes: 1 addition & 1 deletion base/utils.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ install_local_deps() {
if [[ -d "$src_path" ]]; then
log_message "Installing path ${item} in editable mode."

pip3 install --prefix /usr/local/ --no-cache-dir --editable "$src_path" >/dev/null
uv pip install --prefix /usr/local/ --no-cache-dir --editable "$src_path" >/dev/null

nginx_config="${src_path}/${item}/app/webserver_snippets/nginx.conf"

Expand Down
Loading