Skip to content

Commit

Permalink
Update tag prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
IAlibay committed Aug 28, 2023
1 parent 1ee1997 commit eec6678
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
2 changes: 1 addition & 1 deletion mda_xdrlib/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def get_config() -> VersioneerConfig:
cfg.VCS = "git"
cfg.style = "pep440-post"
cfg.tag_prefix = ""
cfg.parentdir_prefix = "None"
cfg.parentdir_prefix = "mda_xdrlib-"
cfg.versionfile_source = "mda_xdrlib/_version.py"
cfg.verbose = False
return cfg
Expand Down
5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
[build-system]
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"
requires = ['setuptools>=61.2', 'tomli; python_version < "3.11"', 'wheel']

[project]
name = "mda_xdrlib"
Expand Down Expand Up @@ -36,5 +35,5 @@ VCS = "git"
style = "pep440-post"
versionfile_source = "mda_xdrlib/_version.py"
versionfile_build = "mda_xdrlib/_version.py"
tag_prefix = ""
tag_prefix = "v"
parentdir_prefix = "mda_xdrlib-"
9 changes: 9 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
from setuptools import setup
import versioneer


setup(name="mda_xdrlib",
include_package_data=True,
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
)

0 comments on commit eec6678

Please sign in to comment.