Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32f6736 commit a5c5e2aCopy full SHA for a5c5e2a
2 files changed
setup.cfg
@@ -0,0 +1,3 @@
1
+[egg_info]
2
+tag_build = .dev
3
+tag_svn_revision = 1
setup.py
@@ -74,15 +74,6 @@
74
for line in file('lib/matplotlib/__init__.py').readlines():
75
if line[:11] == '__version__':
76
exec(line)
77
- # Append cvs tag if working from cvs tree
78
- if os.path.isdir('.svn') and os.path.isfile(os.sep.join(['.svn', 'entries'])):
79
- import re
80
- revision = 0
81
- revre = re.compile(r'(committed-rev|revision)="(\d+)"')
82
- for match in revre.finditer(open(os.sep.join(['.svn', 'entries'])).read()):
83
- revision = max(revision, int(match.group(2)))
84
- __version__ += 'dev_r%i' % revision
85
- break
86
87
# Specify all the required mpl data
88
data = []
0 commit comments