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 .github/workflows/release_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
python-version: '3.9'
- name: Install dependencies
run: |
pip install --upgrade hatch "virtualenv<21"
pip install --upgrade hatch
- name: Build
run: hatch -v build
# # See https://docs.github.com/en/actions/deployment/security-hardening-your-deployments/configuring-openid-connect-in-pypi
Expand Down
2 changes: 1 addition & 1 deletion pipeline/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
set -e

pip install --upgrade pip
pip install --upgrade hatch "virtualenv<21"
pip install --upgrade hatch
pip install --upgrade twine
hatch run lint
hatch run test
Expand Down
2 changes: 1 addition & 1 deletion testing_containers/ldap_sudo_environment/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ RUN apt-get update && export DEBIAN_FRONTEND=noninteractive && \
rm -rf /var/lib/apt/lists/* && \
apt-get clean && \
# Install hatch (for setting up environment and running tests)
pip install hatch "virtualenv<21"
pip install hatch

COPY . /code/
WORKDIR /code
Expand Down
2 changes: 1 addition & 1 deletion testing_containers/localuser_sudo_environment/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ RUN apt-get update && apt-get install -y gcc libcap2-bin psmisc sudo && \
addgroup ${OPENJD_TEST_SUDO_DISJOINT_GROUP} && \
useradd -ms /bin/bash -G ${OPENJD_TEST_SUDO_DISJOINT_GROUP} ${OPENJD_TEST_SUDO_DISJOINT_USER} && \
# Install hatch (for setting up environment and running tests)
pip install hatch "virtualenv<21"
pip install hatch

USER hostuser

Expand Down
Loading