Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions .github/workflows/pypi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion docs/serialization.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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:**

Expand Down
Loading