File tree 3 files changed +9
-3
lines changed
3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 21
21
steps :
22
22
- name : Checkout source
23
23
uses : actions/checkout@v4
24
+ with :
25
+ fetch-depth : 0
24
26
25
27
- name : Set up Python
26
28
uses : actions/setup-python@v5
51
53
path : dist
52
54
53
55
- name : Publish distribution to PyPI
54
- uses : pypa/gh-action-pypi-publish@master
56
+ uses : pypa/gh-action-pypi-publish@release/v1
55
57
with :
56
58
user : __token__
57
59
password : ${{ secrets.PYPI_API_TOKEN }}
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ def get_config() -> VersioneerConfig:
50
50
cfg = VersioneerConfig ()
51
51
cfg .VCS = "git"
52
52
cfg .style = "pep440"
53
- cfg .tag_prefix = ""
53
+ cfg .tag_prefix = "v "
54
54
cfg .parentdir_prefix = "dask_geopandas-"
55
55
cfg .versionfile_source = "dask_geopandas/_version.py"
56
56
cfg .verbose = False
Original file line number Diff line number Diff line change
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
+
1
5
[versioneer]
2
6
VCS = git
3
7
style = pep440
4
8
versionfile_source = dask_geopandas/_version.py
5
9
versionfile_build = dask_geopandas/_version.py
6
- tag_prefix =
10
+ tag_prefix = v
7
11
parentdir_prefix = dask_geopandas-
You can’t perform that action at this time.
0 commit comments