We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9957ba4 commit bd6632aCopy full SHA for bd6632a
.github/workflows/pypi.yaml
@@ -9,10 +9,11 @@ jobs:
9
runs-on: ubuntu-latest
10
11
steps:
12
- - uses: actions/checkout@v3
13
- with:
14
- fetch-depth: 0
15
- fetch-tags: true
+ - name: Checkout repository
+ uses: actions/checkout@v3
+
+ - name: Fetch all tags and branches
16
+ run: git fetch --prune --unshallow
17
18
- uses: actions/setup-python@v4
19
with:
docs/serialization.rst
@@ -133,7 +133,7 @@ back using one of the formats provided by pandas_.
133
# Load multiple documents.
134
return pd.DataFrame(json.loads(data))
135
136
-You would then use the custom serializer/deserializer when working with collections:
+You would then use the custom serializer/deserializer when working with collections.
137
138
**Example:**
139
0 commit comments