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 python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[project]
name = "pylance"
dynamic = ["version"]
dependencies = ["pyarrow>=14", "numpy>=1.22", "lance-namespace>=0.5.2"]
dependencies = ["pyarrow>=14", "numpy>=1.22", "lance-namespace>=0.5.2,<0.7"]
description = "python wrapper for Lance columnar format"
authors = [{ name = "Lance Devs", email = "dev@lance.org" }]
license = { file = "LICENSE" }
Expand Down
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