From 969ed3e86760cedf62a1aa9189305565a2d8faad Mon Sep 17 00:00:00 2001 From: Jack Ye Date: Wed, 19 Nov 2025 12:33:10 -0800 Subject: [PATCH 1/4] ci: move to lance-format pypi fury index --- README.md | 2 +- ci/create_rc_discussion.sh | 2 +- docs/src/quickstart/index.md | 2 +- python/python/tests/compat/compat_decorator.py | 2 +- python/python/tests/compat/venv_manager.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index a1701973359..19e2b62d58e 100644 --- a/README.md +++ b/README.md @@ -66,7 +66,7 @@ pip install pylance To install a preview release: ```shell -pip install --pre --extra-index-url https://pypi.fury.io/lancedb/ pylance +pip install --pre --extra-index-url https://pypi.fury.io/lance-format/pylance ``` > [!TIP] diff --git a/ci/create_rc_discussion.sh b/ci/create_rc_discussion.sh index 0343c5b380e..c508b723725 100755 --- a/ci/create_rc_discussion.sh +++ b/ci/create_rc_discussion.sh @@ -61,7 +61,7 @@ DISCUSSION_BODY="${DISCUSSION_BODY} #### Python \`\`\`bash -pip install --pre --extra-index-url https://pypi.fury.io/lancedb/ pylance==${RC_VERSION} +pip install --pre --extra-index-url https://pypi.fury.io/lance-format/pylance==${RC_VERSION} \`\`\` #### Java (Maven) diff --git a/docs/src/quickstart/index.md b/docs/src/quickstart/index.md index 864972ccc6b..00daa6a4ee4 100644 --- a/docs/src/quickstart/index.md +++ b/docs/src/quickstart/index.md @@ -20,7 +20,7 @@ pip install pylance For the latest features and bug fixes, you can install the preview version: ```bash -pip install --pre --extra-index-url https://pypi.fury.io/lancedb/pylance +pip install --pre --extra-index-url https://pypi.fury.io/lance-format/pylance ``` > Note: Preview releases receive the same level of testing as regular releases. diff --git a/python/python/tests/compat/compat_decorator.py b/python/python/tests/compat/compat_decorator.py index 2f3c1cee044..da95bd41841 100644 --- a/python/python/tests/compat/compat_decorator.py +++ b/python/python/tests/compat/compat_decorator.py @@ -84,7 +84,7 @@ def last_beta_release(): "pylance", "--pre", "--extra-index-url", - "https://pypi.fury.io/lancedb/", + "https://pypi.fury.io/lance-format/", ], capture_output=True, text=True, diff --git a/python/python/tests/compat/venv_manager.py b/python/python/tests/compat/venv_manager.py index 3f803439860..5eda7b13dca 100644 --- a/python/python/tests/compat/venv_manager.py +++ b/python/python/tests/compat/venv_manager.py @@ -102,7 +102,7 @@ def create(self): "--quiet", "--pre", "--extra-index-url", - "https://pypi.fury.io/lancedb/", + "https://pypi.fury.io/lance-format/", f"pylance=={self.version}", "pytest", ], From 0bf6cfb085ef33eca2c93d6764b5b2a80e113502 Mon Sep 17 00:00:00 2001 From: Jack Ye Date: Wed, 19 Nov 2025 12:50:23 -0800 Subject: [PATCH 2/4] add notes --- README.md | 3 +++ docs/src/quickstart/index.md | 2 ++ 2 files changed, 5 insertions(+) diff --git a/README.md b/README.md index 19e2b62d58e..12dba6d4009 100644 --- a/README.md +++ b/README.md @@ -69,6 +69,9 @@ To install a preview release: pip install --pre --extra-index-url https://pypi.fury.io/lance-format/pylance ``` +> [!NOTE] +> For versions prior to 1.0.0-beta.4, you can find them at https://pypi.fury.io/lancedb/lance + > [!TIP] > Preview releases are released more often than full releases and contain the > latest features and bug fixes. They receive the same level of testing as full releases. diff --git a/docs/src/quickstart/index.md b/docs/src/quickstart/index.md index 00daa6a4ee4..354a9723e52 100644 --- a/docs/src/quickstart/index.md +++ b/docs/src/quickstart/index.md @@ -25,6 +25,8 @@ pip install --pre --extra-index-url https://pypi.fury.io/lance-format/pylance > Note: Preview releases receive the same level of testing as regular releases. +> Note: For versions prior to 1.0.0-beta.4, you can find them at https://pypi.fury.io/lancedb/lance + ## Set Up Your Environment First, let's import the necessary libraries: From 2d9068e5b36781f2c9bb4aef48824723ccac256f Mon Sep 17 00:00:00 2001 From: Jack Ye Date: Wed, 19 Nov 2025 12:57:08 -0800 Subject: [PATCH 3/4] typo --- README.md | 2 +- docs/src/quickstart/index.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 12dba6d4009..0e12ddca89d 100644 --- a/README.md +++ b/README.md @@ -70,7 +70,7 @@ pip install --pre --extra-index-url https://pypi.fury.io/lance-format/pylance ``` > [!NOTE] -> For versions prior to 1.0.0-beta.4, you can find them at https://pypi.fury.io/lancedb/lance +> For versions prior to 1.0.0-beta.4, you can find them at https://pypi.fury.io/lancedb/pylance > [!TIP] > Preview releases are released more often than full releases and contain the diff --git a/docs/src/quickstart/index.md b/docs/src/quickstart/index.md index 354a9723e52..6f2c9a8d147 100644 --- a/docs/src/quickstart/index.md +++ b/docs/src/quickstart/index.md @@ -25,7 +25,7 @@ pip install --pre --extra-index-url https://pypi.fury.io/lance-format/pylance > Note: Preview releases receive the same level of testing as regular releases. -> Note: For versions prior to 1.0.0-beta.4, you can find them at https://pypi.fury.io/lancedb/lance +> Note: For versions prior to 1.0.0-beta.4, you can find them at https://pypi.fury.io/lancedb/pylance ## Set Up Your Environment From a3ac47a59a983f6394a514c9e75d954e365ba7d1 Mon Sep 17 00:00:00 2001 From: Jack Ye Date: Wed, 19 Nov 2025 13:57:26 -0800 Subject: [PATCH 4/4] add back old one for compat test --- python/python/tests/compat/compat_decorator.py | 2 ++ python/python/tests/compat/venv_manager.py | 2 ++ 2 files changed, 4 insertions(+) diff --git a/python/python/tests/compat/compat_decorator.py b/python/python/tests/compat/compat_decorator.py index da95bd41841..cb9aa10c573 100644 --- a/python/python/tests/compat/compat_decorator.py +++ b/python/python/tests/compat/compat_decorator.py @@ -85,6 +85,8 @@ def last_beta_release(): "--pre", "--extra-index-url", "https://pypi.fury.io/lance-format/", + "--extra-index-url", + "https://pypi.fury.io/lancedb/", ], capture_output=True, text=True, diff --git a/python/python/tests/compat/venv_manager.py b/python/python/tests/compat/venv_manager.py index 5eda7b13dca..996422aea34 100644 --- a/python/python/tests/compat/venv_manager.py +++ b/python/python/tests/compat/venv_manager.py @@ -103,6 +103,8 @@ def create(self): "--pre", "--extra-index-url", "https://pypi.fury.io/lance-format/", + "--extra-index-url", + "https://pypi.fury.io/lancedb/", f"pylance=={self.version}", "pytest", ],