File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11[bumpversion]
2- current_version = 0.10.6.dev1
2+ current_version = 0.10.6
33commit = True
44tag = False
5+
6+ # NOTE: we can only have one of rc, or dev specified, since dev is more common use that
7+ # parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(?:rc(?P<rc>\d+))?
58parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(?:\.dev(?P<dev>\d+))?
69serialize =
10+ # {major}.{minor}.{patch}rc{rc}
711 {major}.{minor}.{patch}.dev{dev}
812 {major}.{minor}.{patch}
913
Original file line number Diff line number Diff line change 2323
2424setup (
2525 name = 'wandb' ,
26- version = '0.10.6.dev1 ' ,
26+ version = '0.10.6' ,
2727 description = "A CLI and library for interacting with the Weights and Biases API." ,
2828 long_description = readme ,
2929 long_description_content_type = "text/markdown" ,
Original file line number Diff line number Diff line change 1919from __future__ import print_function
2020from __future__ import unicode_literals
2121
22- __version__ = '0.10.6.dev1 '
22+ __version__ = '0.10.6'
2323
2424# Used with pypi checks and other messages related to pip
2525_wandb_module = 'wandb'
You can’t perform that action at this time.
0 commit comments