~ubuntu-branches/ubuntu/wily/spyder/wily-proposed

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Package Import Robot
  • Author(s): Ghislain Antony Vaillant, Ghislain Antony Vaillant, Picca Frédéric-Emmanuel
  • Date: 2014-10-19 11:42:57 UTC
  • mfrom: (1.2.8)
  • Revision ID: package-import@ubuntu.com-20141019114257-st1rz4fmmscgphhm
Tags: 2.3.1+dfsg-1
* Team upload

[Ghislain Antony Vaillant]
* New upstream release. (Closes: #765963)
* Bump Standards-Version to 3.9.6 (no changes required).
* d/control: fix pedantic lintian warning regarding capitalization in
  packages' description.

[Picca Frédéric-Emmanuel]
* Update the homepage now that upstream moved to bitbucket.
* debian/copyright
  - updated for 2.3.1 version
* debian/control
  + Recommends: python-pandas and python3-pandas

Show diffs side-by-side

added added

removed removed

Lines of Context:
181
181
if TARGET_MATCH:
182
182
    TARGET_VERSION = TARGET_MATCH.groups()
183
183
else:
184
 
    TARGET_VERSION = (str(sys.version_info.major), str(sys.version_info.minor))
 
184
    TARGET_VERSION = (str(sys.version_info[0]), str(sys.version_info[1]))
185
185
 
186
186
 
187
187
def get_packages():
211
211
else:
212
212
    SCRIPTS.append('spyder')
213
213
EXTLIST = ['.mo', '.svg', '.png', '.css', '.html', '.js', '.chm', '.ini',
214
 
           '.txt']
 
214
           '.txt', '.rst']
215
215
if os.name == 'nt':
216
216
    SCRIPTS += ['spyder.bat']
217
217
    EXTLIST += ['.ico']