This repository was archived by the owner on Aug 2, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +12
-5
lines changed
Expand file tree Collapse file tree 4 files changed +12
-5
lines changed Original file line number Diff line number Diff line change 33
44Here you can see the full list of changes between each BioSPPy release.
55
6+ Version 0.6.1
7+ -------------
8+
9+ Released on August 20th 2018
10+
11+ - Fixed source file encoding
12+
613Version 0.6.0
714-------------
815
Original file line number Diff line number Diff line change 99:license: BSD 3-clause, see LICENSE for more details.
1010"""
1111
12- VERSION = (0 , 6 , 0 )
12+ VERSION = (0 , 6 , 1 )
1313__version__ = '.' .join (map (str , VERSION ))
Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ def __getattr__(cls, name):
8585# built documents.
8686#
8787# The short X.Y version.
88- version = '0.6.0 '
88+ version = '0.6.1 '
8989# The full version, including alpha/beta/rc tags.
9090release = version
9191
Original file line number Diff line number Diff line change @@ -101,9 +101,9 @@ def run(self):
101101 self .status ('Uploading the package to PyPI via Twine…' )
102102 os .system ('twine upload dist/*' )
103103
104- self .status ('Pushing git tags…' )
105- os .system ('git tag v{0}' .format (about ['__version__' ]))
106- os .system ('git push --tags' )
104+ # self.status('Pushing git tags…')
105+ # os.system('git tag v{0}'.format(about['__version__']))
106+ # os.system('git push --tags')
107107
108108 sys .exit ()
109109
You can’t perform that action at this time.
0 commit comments