Skip to content

Commit 47d2dd6

Browse files
committed
Revert "chore: temporary pin virtualenv<21 to fix build (#303)"
This reverts commit 6a93f7c.
1 parent 6a93f7c commit 47d2dd6

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/release_publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
python-version: '3.9'
8484
- name: Install dependencies
8585
run: |
86-
pip install --upgrade hatch "virtualenv<21"
86+
pip install --upgrade hatch
8787
- name: Build
8888
run: hatch -v build
8989
# # See https://docs.github.com/en/actions/deployment/security-hardening-your-deployments/configuring-openid-connect-in-pypi

pipeline/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
set -e
44

55
pip install --upgrade pip
6-
pip install --upgrade hatch "virtualenv<21"
6+
pip install --upgrade hatch
77
pip install --upgrade twine
88
hatch run lint
99
hatch run test

testing_containers/ldap_sudo_environment/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ RUN apt-get update && export DEBIAN_FRONTEND=noninteractive && \
6969
rm -rf /var/lib/apt/lists/* && \
7070
apt-get clean && \
7171
# Install hatch (for setting up environment and running tests)
72-
pip install hatch "virtualenv<21"
72+
pip install hatch
7373

7474
COPY . /code/
7575
WORKDIR /code

testing_containers/localuser_sudo_environment/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ RUN apt-get update && apt-get install -y gcc libcap2-bin psmisc sudo && \
3333
addgroup ${OPENJD_TEST_SUDO_DISJOINT_GROUP} && \
3434
useradd -ms /bin/bash -G ${OPENJD_TEST_SUDO_DISJOINT_GROUP} ${OPENJD_TEST_SUDO_DISJOINT_USER} && \
3535
# Install hatch (for setting up environment and running tests)
36-
pip install hatch "virtualenv<21"
36+
pip install hatch
3737

3838
USER hostuser
3939

0 commit comments

Comments
 (0)