Skip to content

Commit bd6632a

Browse files
authored
Fetching all tags (#47)
* Fetching all tags * Small change
1 parent 9957ba4 commit bd6632a

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.github/workflows/pypi.yaml

+5-4
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,11 @@ jobs:
99
runs-on: ubuntu-latest
1010

1111
steps:
12-
- uses: actions/checkout@v3
13-
with:
14-
fetch-depth: 0
15-
fetch-tags: true
12+
- name: Checkout repository
13+
uses: actions/checkout@v3
14+
15+
- name: Fetch all tags and branches
16+
run: git fetch --prune --unshallow
1617

1718
- uses: actions/setup-python@v4
1819
with:

docs/serialization.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ back using one of the formats provided by pandas_.
133133
# Load multiple documents.
134134
return pd.DataFrame(json.loads(data))
135135
136-
You would then use the custom serializer/deserializer when working with collections:
136+
You would then use the custom serializer/deserializer when working with collections.
137137

138138
**Example:**
139139

0 commit comments

Comments
 (0)