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
1919$PYTHON_BINARY -m venv .venv
2020. .venv/bin/activate
2121PYTHON_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"
2324
2425# Run tests.
2526MONGO_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
1919$PYTHON_BINARY -m venv .venv
2020. .venv/bin/activate
2121PYTHON_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"
2324
2425# Run tests.
2526MONGO_CONNECTION_STRING_2=" $MONGODB_URI " hatch run test:all -v
You can’t perform that action at this time.
0 commit comments