File tree Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 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
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 }}
Original file line number Diff line number Diff 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
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+
15[versioneer]
26VCS = git
37style = pep440
48versionfile_source = dask_geopandas/_version.py
59versionfile_build = dask_geopandas/_version.py
6- tag_prefix =
10+ tag_prefix = v
711parentdir_prefix = dask_geopandas-
You can’t perform that action at this time.
0 commit comments