##// END OF EJS Templates
Adding .gitignore and updating release to remove bzr tag.
Brian Granger -
Show More
@@ -0,0 +1,6 b''
1 docs/dist
2 docs/build/*
3 docs/source/api/generated
4 *.pyc
5 build
6 *.egg-info
@@ -23,13 +23,14 b" name = 'ipython'"
23 development = True # change this to False to do a release
23 development = True # change this to False to do a release
24 version_base = '0.11.alpha1'
24 version_base = '0.11.alpha1'
25 branch = 'ipython'
25 branch = 'ipython'
26 revision = '1223'
26 # This needs to be updated to something that is meaningful for git
27 revision = '0'
27
28
28 if development:
29 if development:
29 if branch == 'ipython':
30 if branch == 'ipython':
30 version = '%s.bzr.r%s' % (version_base, revision)
31 version = '%s.git' % (version_base)
31 else:
32 else:
32 version = '%s.bzr.r%s.%s' % (version_base, revision, branch)
33 version = '%s.git.%s' % (version_base, branch)
33 else:
34 else:
34 version = version_base
35 version = version_base
35
36
General Comments 0
You need to be logged in to leave comments. Login now