Skip to content

Commit 85f7eb3

Browse files
committed
Fix compatibility between actions/checkout@v2 and setuptools_scm
1 parent 1052363 commit 85f7eb3

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

.github/workflows/publish.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,15 @@ on: push
55
jobs:
66
publish:
77
runs-on: ubuntu-latest
8+
89
steps:
9-
- uses: actions/checkout@v2
10+
- name: Acquire sources
11+
uses: actions/checkout@v2
12+
13+
# Fixup for `setuptools_scm`
14+
# https://github.com/pypa/setuptools_scm/issues/480
15+
with:
16+
fetch-depth: 0
1017

1118
- name: Set up Python 3.9
1219
uses: actions/setup-python@v2

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# CHANGELOG
22

33
## in progress
4+
* Add handler for health API. Thanks, @peekjef72!
5+
* Add support for datasource proxying. Thanks, @peekjef72!
6+
* Fix compatibility between `actions/checkout@v2` and `setuptools_scm`
47

58

69
## 2.0.2 (2022-02-03)

0 commit comments

Comments
 (0)