Skip to content

Commit

Permalink
RLS: v0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jorisvandenbossche committed Jun 24, 2024
1 parent 8d752ad commit f8da2f6
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ jobs:
steps:
- name: Checkout source
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Set up Python
uses: actions/setup-python@v5
Expand Down Expand Up @@ -51,7 +53,7 @@ jobs:
path: dist

- name: Publish distribution to PyPI
uses: pypa/gh-action-pypi-publish@master
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion dask_geopandas/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def get_config() -> VersioneerConfig:
cfg = VersioneerConfig()
cfg.VCS = "git"
cfg.style = "pep440"
cfg.tag_prefix = ""
cfg.tag_prefix = "v"
cfg.parentdir_prefix = "dask_geopandas-"
cfg.versionfile_source = "dask_geopandas/_version.py"
cfg.verbose = False
Expand Down
6 changes: 5 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
# See the docstring in versioneer.py for instructions. Note that you must
# re-run 'versioneer.py setup' after changing this section, and commit the
# resulting files.

[versioneer]
VCS = git
style = pep440
versionfile_source = dask_geopandas/_version.py
versionfile_build = dask_geopandas/_version.py
tag_prefix =
tag_prefix = v
parentdir_prefix = dask_geopandas-

0 comments on commit f8da2f6

Please sign in to comment.