From 102b824345018eaca829234232d63e38f6420e1a Mon Sep 17 00:00:00 2001 From: Jules <54960783+juleswg23@users.noreply.github.com> Date: Thu, 28 Aug 2025 12:18:20 -0400 Subject: [PATCH 1/2] add fetch depth --- .github/workflows/ci-docs.yaml | 2 ++ .github/workflows/ci-tests.yaml | 10 ++++++++++ 2 files changed, 12 insertions(+) diff --git a/.github/workflows/ci-docs.yaml b/.github/workflows/ci-docs.yaml index 4b13d9ef9..461f3e2a3 100644 --- a/.github/workflows/ci-docs.yaml +++ b/.github/workflows/ci-docs.yaml @@ -14,6 +14,8 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 + with: + fetch-depth: 0 - uses: actions/setup-python@v5 with: python-version: "3.10" diff --git a/.github/workflows/ci-tests.yaml b/.github/workflows/ci-tests.yaml index 1d643f9b3..0b742194e 100644 --- a/.github/workflows/ci-tests.yaml +++ b/.github/workflows/ci-tests.yaml @@ -20,6 +20,8 @@ jobs: steps: - uses: actions/checkout@v4 + with: + fetch-depth: 0 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v5 with: @@ -44,6 +46,8 @@ jobs: runs-on: windows-latest steps: - uses: actions/checkout@v4 + with: + fetch-depth: 0 - name: Set up Python uses: actions/setup-python@v5 with: @@ -59,6 +63,8 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 + with: + fetch-depth: 0 - name: Set up Python uses: actions/setup-python@v5 with: @@ -83,6 +89,8 @@ jobs: # - uses: actions/checkout@v4 + with: + fetch-depth: 0 - name: Set up Python uses: actions/setup-python@v5 with: @@ -108,6 +116,8 @@ jobs: if: github.event_name == 'release' steps: - uses: actions/checkout@v2 + with: + fetch-depth: 0 - uses: actions/setup-python@v2 with: python-version: "3.10" From d64ede678818503a9c9eba4308e8a3e6934d705d Mon Sep 17 00:00:00 2001 From: Jules <54960783+juleswg23@users.noreply.github.com> Date: Thu, 28 Aug 2025 12:18:31 -0400 Subject: [PATCH 2/2] add gt-extras to dependencies --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index bb43b2c1f..4aac7100f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -73,6 +73,7 @@ dev-no-pandas = [ "jupyter", "quartodoc>=0.11.0; python_version >= '3.9'", "griffe==0.38.1", + "gt-extras>=0.0.7", "polars", "pre-commit==2.15.0", "pyarrow",