Skip to content

Commit

Permalink
fix: still version typo (#11)
Browse files Browse the repository at this point in the history
* fix: updating old ci.cd folder

* fix: updating github actions

* fix: feature release update

* fix: valid pypi version

* fix: add twine

* fix: wrong string format

* fix: typo in version
  • Loading branch information
wphyojpl authored Sep 10, 2024
1 parent 26da87d commit 44d6877
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .ci/update_setup_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def update_version(self, is_release=False):
else:
print('this is a feature merge')
self.get_new_bumps_from_title()
new_version = ''.join([f'{i:02}' for i in self.get_new_version(dev_version).split('.')])
new_version = ''.join([f'{int(i):02}' for i in self.get_new_version(dev_version).split('.')])
new_version = f'{main_version}.dev{new_version}'
print(f'new_version: {new_version}')

Expand Down

0 comments on commit 44d6877

Please sign in to comment.