From a25547d68aedd9d44f43c84a1df0e182720b2894 Mon Sep 17 00:00:00 2001 From: Alex Petenchea Date: Sun, 11 May 2025 16:42:42 +0000 Subject: [PATCH 1/2] Fetching all tags --- .github/workflows/pypi.yaml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pypi.yaml b/.github/workflows/pypi.yaml index 8106d23..5f99d4a 100644 --- a/.github/workflows/pypi.yaml +++ b/.github/workflows/pypi.yaml @@ -9,10 +9,11 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - with: - fetch-depth: 0 - fetch-tags: true + - name: Checkout repository + uses: actions/checkout@v3 + + - name: Fetch all tags and branches + run: git fetch --prune --unshallow - uses: actions/setup-python@v4 with: From c31b217eb8c5d3807f3a912aebe425d8de5148a7 Mon Sep 17 00:00:00 2001 From: Alex Petenchea Date: Sun, 11 May 2025 16:46:33 +0000 Subject: [PATCH 2/2] Small change --- docs/serialization.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/serialization.rst b/docs/serialization.rst index 1866ee3..9fe520e 100644 --- a/docs/serialization.rst +++ b/docs/serialization.rst @@ -133,7 +133,7 @@ back using one of the formats provided by pandas_. # Load multiple documents. return pd.DataFrame(json.loads(data)) -You would then use the custom serializer/deserializer when working with collections: +You would then use the custom serializer/deserializer when working with collections. **Example:**