From 1b92b33f887d1adb21eeae8d350732e8714f515e Mon Sep 17 00:00:00 2001 From: Zhenzhong Xu Date: Sat, 2 Dec 2023 00:13:19 -0800 Subject: [PATCH] fix(flink): add os to the cache key --- .github/workflows/ibis-backends.yml | 2 +- docs/support_matrix.qmd | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ibis-backends.yml b/.github/workflows/ibis-backends.yml index aa4b1174eb0c..55bb12116f18 100644 --- a/.github/workflows/ibis-backends.yml +++ b/.github/workflows/ibis-backends.yml @@ -319,7 +319,7 @@ jobs: - uses: syphar/restore-pip-download-cache@v1 with: requirement_files: poetry.lock - custom_cache_key_element: ${{ steps.install_python.outputs.python-version }} + custom_cache_key_element: ${{ matrix.os }}-${{ steps.install_python.outputs.python-version }} - name: install poetry run: python -m pip install --upgrade pip 'poetry==1.7.0' diff --git a/docs/support_matrix.qmd b/docs/support_matrix.qmd index 3e44f25c9ee4..f1afa996c8d8 100644 --- a/docs/support_matrix.qmd +++ b/docs/support_matrix.qmd @@ -45,7 +45,7 @@ You can also download data from the above tables in [CSV format](./backends/raw_ The code used to generate the linked CSV file is below. ```{python} -#| echo: true +#| echo: false #| output: asis with open("../gen_matrix.py", mode="r") as f: print(f"```python\n{f.read()}\n```")