Show More
@@ -1,11 +1,11 b'' | |||
|
1 | 1 | # encoding: utf-8 |
|
2 | 2 | """ |
|
3 | IPython. | |
|
3 | IPython: tools for interactive and parallel computing in Python. | |
|
4 | 4 | |
|
5 | IPython is a set of tools for interactive and exploratory computing in Python. | |
|
5 | http://ipython.org | |
|
6 | 6 | """ |
|
7 | 7 | #----------------------------------------------------------------------------- |
|
8 |
# Copyright (c) 2008-201 |
|
|
8 | # Copyright (c) 2008-2011, IPython Development Team. | |
|
9 | 9 | # Copyright (c) 2001-2007, Fernando Perez <fernando.perez@colorado.edu> |
|
10 | 10 | # Copyright (c) 2001, Janko Hauser <jhauser@zscout.de> |
|
11 | 11 | # Copyright (c) 2001, Nathaniel Gray <n8gray@caltech.edu> |
@@ -31,7 +31,6 b' import sys' | |||
|
31 | 31 | if sys.version[0:3] < '2.6': |
|
32 | 32 | raise ImportError('Python Version 2.6 or above is required for IPython.') |
|
33 | 33 | |
|
34 | ||
|
35 | 34 | # Make it easy to import extensions - they are always directly on pythonpath. |
|
36 | 35 | # Therefore, non-IPython modules can be added to extensions directory. |
|
37 | 36 | # This should probably be in ipapp.py. |
@@ -2,7 +2,7 b'' | |||
|
2 | 2 | """Release data for the IPython project.""" |
|
3 | 3 | |
|
4 | 4 | #----------------------------------------------------------------------------- |
|
5 |
# Copyright (c) 2008-201 |
|
|
5 | # Copyright (c) 2008-2011, IPython Development Team. | |
|
6 | 6 | # Copyright (c) 2001-2007, Fernando Perez <fernando.perez@colorado.edu> |
|
7 | 7 | # Copyright (c) 2001, Janko Hauser <jhauser@zscout.de> |
|
8 | 8 | # Copyright (c) 2001, Nathaniel Gray <n8gray@caltech.edu> |
@@ -192,7 +192,7 b' series. A huge diff and ~2200 commits make up this cycle::' | |||
|
192 | 192 | 288019 |
|
193 | 193 | |
|
194 | 194 | git log $(git merge-base 0.10.2 HEAD)..HEAD --oneline | wc -l |
|
195 |
2 |
|
|
195 | 2200 | |
|
196 | 196 | |
|
197 | 197 | Since our move to github, 511 issues were closed, 226 of which were pull |
|
198 | 198 | requests and 285 regular issues (:ref:`a full list with links |
@@ -606,7 +606,7 b" the new classes and APIs, but that we simply haven't had time for. Any user" | |||
|
606 | 606 | who is interested in one of these is encouraged to help us by porting it and |
|
607 | 607 | submitting a pull request on our `development site`_. |
|
608 | 608 | |
|
609 |
.. _development site: |
|
|
609 | .. _development site: http://github.com/ipython/ipython | |
|
610 | 610 | |
|
611 | 611 | Currently, the quarantine directory contains:: |
|
612 | 612 |
@@ -8,14 +8,14 b' ipdir = get_ipdir()' | |||
|
8 | 8 | cd(ipdir) |
|
9 | 9 | |
|
10 | 10 | # Load release info |
|
11 | execfile(pjoin('IPython','core','release.py')) | |
|
11 | execfile(pjoin('IPython', 'core', 'release.py')) | |
|
12 | 12 | |
|
13 | 13 | # Check that everything compiles |
|
14 | 14 | compile_tree() |
|
15 | 15 | |
|
16 | 16 | # Cleanup |
|
17 | for d in ['build','dist',pjoin('docs','build'),pjoin('docs','dist'), | |
|
18 | pjoin('docs','source','api','generated')]: | |
|
17 | for d in ['build', 'dist', pjoin('docs', 'build'), pjoin('docs', 'dist'), | |
|
18 | pjoin('docs', 'source', 'api', 'generated')]: | |
|
19 | 19 | if os.path.isdir(d): |
|
20 | 20 | remove_tree(d) |
|
21 | 21 | |
@@ -23,7 +23,7 b" for d in ['build','dist',pjoin('docs','build'),pjoin('docs','dist')," | |||
|
23 | 23 | sh('./setup.py sdist --formats=gztar,zip') |
|
24 | 24 | |
|
25 | 25 | # Build eggs |
|
26 |
sh('python |
|
|
26 | sh('python ./setupegg.py bdist_egg') | |
|
27 | 27 | |
|
28 | 28 | # Call the windows build separately, so that the extra Windows scripts don't |
|
29 | 29 | # get pulled into Unix builds (setup.py has code which checks for |
General Comments 0
You need to be logged in to leave comments.
Login now