Skip to content

Fetching all tags #47

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 11, 2025
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