Skip to content

Commit f8da2f6

Browse files
RLS: v0.4.0
1 parent 8d752ad commit f8da2f6

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

.github/workflows/release.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ jobs:
2121
steps:
2222
- name: Checkout source
2323
uses: actions/checkout@v4
24+
with:
25+
fetch-depth: 0
2426

2527
- name: Set up Python
2628
uses: actions/setup-python@v5
@@ -51,7 +53,7 @@ jobs:
5153
path: dist
5254

5355
- name: Publish distribution to PyPI
54-
uses: pypa/gh-action-pypi-publish@master
56+
uses: pypa/gh-action-pypi-publish@release/v1
5557
with:
5658
user: __token__
5759
password: ${{ secrets.PYPI_API_TOKEN }}

dask_geopandas/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def get_config() -> VersioneerConfig:
5050
cfg = VersioneerConfig()
5151
cfg.VCS = "git"
5252
cfg.style = "pep440"
53-
cfg.tag_prefix = ""
53+
cfg.tag_prefix = "v"
5454
cfg.parentdir_prefix = "dask_geopandas-"
5555
cfg.versionfile_source = "dask_geopandas/_version.py"
5656
cfg.verbose = False

setup.cfg

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
1+
# See the docstring in versioneer.py for instructions. Note that you must
2+
# re-run 'versioneer.py setup' after changing this section, and commit the
3+
# resulting files.
4+
15
[versioneer]
26
VCS = git
37
style = pep440
48
versionfile_source = dask_geopandas/_version.py
59
versionfile_build = dask_geopandas/_version.py
6-
tag_prefix =
10+
tag_prefix = v
711
parentdir_prefix = dask_geopandas-

0 commit comments

Comments
 (0)