Skip to content

Commit

Permalink
Merge pull request #73 from fair-software/fix-issue-number
Browse files Browse the repository at this point in the history
changed version number setup in setup files
  • Loading branch information
eriktks authored Mar 9, 2021
2 parents a9f36e5 + 4bfeb2d commit e19ed9c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 4 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ current_version = 0.0.0
search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"

[bumpversion:file:setup.py]
search = version="{current_version}"
replace = version="{new_version}"

[bumpversion:file:CITATION.cff]
search = version: "{current_version}"
replace = version: "{new_version}"
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
#!/usr/bin/env python
import os
from fairtally.__version__ import __version__
from setuptools import setup

here = os.path.abspath(os.path.dirname(__file__))
Expand All @@ -14,7 +13,7 @@
entry_points={
"console_scripts": ["fairtally=fairtally.cli:cli"],
},
version=__version__,
version="0.0.0",
description="Make a report based on howfairis results",
long_description=readme + "\n\n",
author="FAIR Software",
Expand Down

0 comments on commit e19ed9c

Please sign in to comment.