Skip to content
Merged
Changes from 1 commit
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
5 changes: 5 additions & 0 deletions python/python/tests/compat/venv_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,11 @@ def create(self):
"--extra-index-url",
"https://pypi.fury.io/lancedb/",
f"pylance=={self.version}",
# Released Lance wheels (e.g. 2.0.1, 4.0.0b1) import
# CreateEmptyTableRequest from lance_namespace, which was
# removed in lance-namespace 0.7.0. Pin to <0.7 so old wheels
# resolve a compatible transitive dep.
"lance-namespace<0.7",
"pytest",
],
check=True,
Expand Down
Loading