File tree Expand file tree Collapse file tree 5 files changed +17
-8
lines changed Expand file tree Collapse file tree 5 files changed +17
-8
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,16 @@ Chuck Thier
16
16
Contributors
17
17
------------
18
18
Chmouel Boudjnah
19
+ Anne Gentle
20
+ Clay Gerrard
21
+ David Goetz
22
+ Soren Hansen
23
+ Paul Jimenez
24
+ Brian K. Jones
19
25
Ed Leafe
20
- Conrad Weidenkeller
26
+ Andrew Clay Shafer
21
27
Monty Taylor
28
+ Caleb Tennis
29
+ Kapil Thangavelu
30
+ Conrad Weidenkeller
31
+ Cory Wright
Original file line number Diff line number Diff line change 61
61
# built documents.
62
62
#
63
63
# The short X.Y version.
64
- version = '1.0'
64
+ from swift import __version__
65
+ version = __version__ .rsplit ('.' , 1 )[0 ]
65
66
# The full version, including alpha/beta/rc tags.
66
- release = '1.0.2'
67
+ release = __version__
67
68
68
69
# The language for content autogenerated by Sphinx. Refer to documentation
69
70
# for a list of supported languages.
Original file line number Diff line number Diff line change @@ -58,10 +58,7 @@ Instructions for Building Debian Packages for Swift
58
58
apt-get install python-software-properties
59
59
add-apt-repository ppa:swift-core/ppa
60
60
apt-get update
61
- apt-get install curl gcc bzr python-configobj python-coverage python-dev
62
- python-nose python-setuptools python-simplejson python-xattr
63
- python-webob python-eventlet python-greenlet debhelper python-sphinx
64
- python-all python-openssl python-pastedeploy
61
+ apt-get install curl gcc bzr python-configobj python-coverage python-dev python-nose python-setuptools python-simplejson python-xattr python-webob python-eventlet python-greenlet debhelper python-sphinx python-all python-openssl python-pastedeploy bzr-builddeb
65
62
66
63
* As you
67
64
Original file line number Diff line number Diff line change 19
19
import os
20
20
import subprocess
21
21
22
+ from swift import __version__ as version
22
23
23
24
class local_sdist (sdist ):
24
25
"""Customized sdist hook - builds the ChangeLog file from VC first"""
@@ -36,7 +37,6 @@ def run(self):
36
37
37
38
38
39
name = 'swift'
39
- version = '1.0.2'
40
40
41
41
setup (
42
42
name = name ,
Original file line number Diff line number Diff line change
1
+ __version__ = '1.1.0'
You can’t perform that action at this time.
0 commit comments