File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,8 @@ cd integrations/mongodb_atlas
19
19
$PYTHON_BINARY -m venv .venv
20
20
. .venv/bin/activate
21
21
PYTHON_BINARY=$( which python)
22
- $PYTHON_BINARY -m pip install -U pip hatch
22
+ # Workaround for https://github.com/pypa/hatch/issues/2050
23
+ $PYTHON_BINARY -m pip install -U pip hatch " click<8.3.0"
23
24
24
25
# Run tests.
25
26
MONGO_CONNECTION_STRING=" $MONGODB_URI " hatch run test:all -v
Original file line number Diff line number Diff line change @@ -19,7 +19,8 @@ cd integrations/mongodb_atlas
19
19
$PYTHON_BINARY -m venv .venv
20
20
. .venv/bin/activate
21
21
PYTHON_BINARY=$( which python)
22
- $PYTHON_BINARY -m pip install -U pip hatch
22
+ # Workaround for https://github.com/pypa/hatch/issues/2050
23
+ $PYTHON_BINARY -m pip install -U pip hatch " click<8.3.0"
23
24
24
25
# Run tests.
25
26
MONGO_CONNECTION_STRING_2=" $MONGODB_URI " hatch run test:all -v
You can’t perform that action at this time.
0 commit comments