Skip to content

Commit ce62505

Browse files
authored
Fix unidentifiable version. (#18)
1 parent 6154a61 commit ce62505

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGES.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ all releases are available on `PyPI <https://pypi.org/project/pytask-parallel>`_
77
`Anaconda.org <https://anaconda.org/pytask/pytask-parallel>`_.
88

99

10+
0.0.8 - 2021-03-05
11+
------------------
12+
13+
- :gh:`17` fixes the unidentifiable version.
14+
15+
1016
0.0.7 - 2021-03-04
1117
------------------
1218

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
setup(
2020
name="pytask-parallel",
2121
version=versioneer.get_version(),
22-
cmd_class=versioneer.get_cmdclass(),
22+
cmdclass=versioneer.get_cmdclass(),
2323
description="Parallelize the execution of pytask.",
2424
long_description=README,
2525
long_description_content_type="text/x-rst",

src/pytask_parallel/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def get_config():
3838
cfg.VCS = "git"
3939
cfg.style = "pep440"
4040
cfg.tag_prefix = "v"
41-
cfg.parentdir_prefix = "pytask_parallel-"
41+
cfg.parentdir_prefix = "pytask-parallel-"
4242
cfg.versionfile_source = "src/pytask_parallel/_version.py"
4343
cfg.verbose = False
4444
return cfg

0 commit comments

Comments
 (0)