diff --git a/.github/workflows/build_mac_wheel/action.yml b/.github/workflows/build_mac_wheel/action.yml index 9c7db5ea..bf740c79 100644 --- a/.github/workflows/build_mac_wheel/action.yml +++ b/.github/workflows/build_mac_wheel/action.yml @@ -20,7 +20,7 @@ runs: uses: PyO3/maturin-action@v1 with: command: build + # TODO: pass through interpreter args: ${{ inputs.args }} docker-options: "-e PIP_EXTRA_INDEX_URL=https://pypi.fury.io/lancedb/" working-directory: python - interpreter: 3.${{ inputs.python-minor-version }} diff --git a/.github/workflows/build_windows_wheel/action.yml b/.github/workflows/build_windows_wheel/action.yml index ac0f81c1..e4e07735 100644 --- a/.github/workflows/build_windows_wheel/action.yml +++ b/.github/workflows/build_windows_wheel/action.yml @@ -28,7 +28,7 @@ runs: args: ${{ inputs.args }} docker-options: "-e PIP_EXTRA_INDEX_URL=https://pypi.fury.io/lancedb/" working-directory: python - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: windows-wheels path: python\target\wheels diff --git a/python/python/tests/test_query.py b/python/python/tests/test_query.py index 1d9db4f0..bd40811a 100644 --- a/python/python/tests/test_query.py +++ b/python/python/tests/test_query.py @@ -449,10 +449,10 @@ async def test_query_to_pandas_flatten_async(table_struct_async: AsyncTable): @pytest.mark.asyncio async def test_query_to_polars_async(table_async: AsyncTable): df = await table_async.query().to_polars() - assert df.shape == (2, 4) + assert df.shape == (2, 5) df = await table_async.query().where("id < 0").to_polars() - assert df.shape == (0, 4) + assert df.shape == (0, 5) @pytest.mark.asyncio