Skip to content

Commit

Permalink
Drop extra "v" when build script checks euphonic.__version__
Browse files Browse the repository at this point in the history
The optional v is now included in euphonic.__version__ so we don't
have to add it (again!) for consistency with other locations.
  • Loading branch information
ajjackson committed Dec 5, 2024
1 parent dcefbfa commit 3157730
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build_utils/release.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def release_github(test=True):
with open('CITATION.cff') as f:
citation = yaml.safe_load(f)

euphonic_ver = 'v' + __version__
euphonic_ver = __version__
version_dict = {}
version_dict['CHANGELOG.rst'] = re.findall(r'\n`(v\d+\.\d+\.\S+)\s',
changelog)[0]
Expand Down

0 comments on commit 3157730

Please sign in to comment.