Show More
@@ -1,119 +1,119 b'' | |||||
1 | # -*- coding: utf-8 -*- |
|
1 | # -*- coding: utf-8 -*- | |
2 | """Release data for the IPython project.""" |
|
2 | """Release data for the IPython project.""" | |
3 |
|
3 | |||
4 | #----------------------------------------------------------------------------- |
|
4 | #----------------------------------------------------------------------------- | |
5 | # Copyright (c) 2008, IPython Development Team. |
|
5 | # Copyright (c) 2008, IPython Development Team. | |
6 | # Copyright (c) 2001, Fernando Perez <fernando.perez@colorado.edu> |
|
6 | # Copyright (c) 2001, Fernando Perez <fernando.perez@colorado.edu> | |
7 | # Copyright (c) 2001, Janko Hauser <jhauser@zscout.de> |
|
7 | # Copyright (c) 2001, Janko Hauser <jhauser@zscout.de> | |
8 | # Copyright (c) 2001, Nathaniel Gray <n8gray@caltech.edu> |
|
8 | # Copyright (c) 2001, Nathaniel Gray <n8gray@caltech.edu> | |
9 | # |
|
9 | # | |
10 | # Distributed under the terms of the Modified BSD License. |
|
10 | # Distributed under the terms of the Modified BSD License. | |
11 | # |
|
11 | # | |
12 | # The full license is in the file COPYING.txt, distributed with this software. |
|
12 | # The full license is in the file COPYING.txt, distributed with this software. | |
13 | #----------------------------------------------------------------------------- |
|
13 | #----------------------------------------------------------------------------- | |
14 |
|
14 | |||
15 | # Name of the package for release purposes. This is the name which labels |
|
15 | # Name of the package for release purposes. This is the name which labels | |
16 | # the tarballs and RPMs made by distutils, so it's best to lowercase it. |
|
16 | # the tarballs and RPMs made by distutils, so it's best to lowercase it. | |
17 | name = 'ipython' |
|
17 | name = 'ipython' | |
18 |
|
18 | |||
19 | # IPython version information. An empty _version_extra corresponds to a full |
|
19 | # IPython version information. An empty _version_extra corresponds to a full | |
20 | # release. 'dev' as a _version_extra string means this is a development |
|
20 | # release. 'dev' as a _version_extra string means this is a development | |
21 | # version |
|
21 | # version | |
22 | _version_major = 7 |
|
22 | _version_major = 7 | |
23 |
_version_minor = 1 |
|
23 | _version_minor = 11 | |
24 | _version_patch = 0 |
|
24 | _version_patch = 0 | |
25 | _version_extra = '.dev' |
|
25 | _version_extra = '.dev' | |
26 | # _version_extra = 'b1' |
|
26 | # _version_extra = 'b1' | |
27 | _version_extra = '' # Uncomment this for full releases |
|
27 | # _version_extra = '' # Uncomment this for full releases | |
28 |
|
28 | |||
29 | # Construct full version string from these. |
|
29 | # Construct full version string from these. | |
30 | _ver = [_version_major, _version_minor, _version_patch] |
|
30 | _ver = [_version_major, _version_minor, _version_patch] | |
31 |
|
31 | |||
32 | __version__ = '.'.join(map(str, _ver)) |
|
32 | __version__ = '.'.join(map(str, _ver)) | |
33 | if _version_extra: |
|
33 | if _version_extra: | |
34 | __version__ = __version__ + _version_extra |
|
34 | __version__ = __version__ + _version_extra | |
35 |
|
35 | |||
36 | version = __version__ # backwards compatibility name |
|
36 | version = __version__ # backwards compatibility name | |
37 | version_info = (_version_major, _version_minor, _version_patch, _version_extra) |
|
37 | version_info = (_version_major, _version_minor, _version_patch, _version_extra) | |
38 |
|
38 | |||
39 | # Change this when incrementing the kernel protocol version |
|
39 | # Change this when incrementing the kernel protocol version | |
40 | kernel_protocol_version_info = (5, 0) |
|
40 | kernel_protocol_version_info = (5, 0) | |
41 | kernel_protocol_version = "%i.%i" % kernel_protocol_version_info |
|
41 | kernel_protocol_version = "%i.%i" % kernel_protocol_version_info | |
42 |
|
42 | |||
43 | description = "IPython: Productive Interactive Computing" |
|
43 | description = "IPython: Productive Interactive Computing" | |
44 |
|
44 | |||
45 | long_description = \ |
|
45 | long_description = \ | |
46 | """ |
|
46 | """ | |
47 | IPython provides a rich toolkit to help you make the most out of using Python |
|
47 | IPython provides a rich toolkit to help you make the most out of using Python | |
48 | interactively. Its main components are: |
|
48 | interactively. Its main components are: | |
49 |
|
49 | |||
50 | * A powerful interactive Python shell |
|
50 | * A powerful interactive Python shell | |
51 | * A `Jupyter <https://jupyter.org/>`_ kernel to work with Python code in Jupyter |
|
51 | * A `Jupyter <https://jupyter.org/>`_ kernel to work with Python code in Jupyter | |
52 | notebooks and other interactive frontends. |
|
52 | notebooks and other interactive frontends. | |
53 |
|
53 | |||
54 | The enhanced interactive Python shells have the following main features: |
|
54 | The enhanced interactive Python shells have the following main features: | |
55 |
|
55 | |||
56 | * Comprehensive object introspection. |
|
56 | * Comprehensive object introspection. | |
57 |
|
57 | |||
58 | * Input history, persistent across sessions. |
|
58 | * Input history, persistent across sessions. | |
59 |
|
59 | |||
60 | * Caching of output results during a session with automatically generated |
|
60 | * Caching of output results during a session with automatically generated | |
61 | references. |
|
61 | references. | |
62 |
|
62 | |||
63 | * Extensible tab completion, with support by default for completion of python |
|
63 | * Extensible tab completion, with support by default for completion of python | |
64 | variables and keywords, filenames and function keywords. |
|
64 | variables and keywords, filenames and function keywords. | |
65 |
|
65 | |||
66 | * Extensible system of 'magic' commands for controlling the environment and |
|
66 | * Extensible system of 'magic' commands for controlling the environment and | |
67 | performing many tasks related either to IPython or the operating system. |
|
67 | performing many tasks related either to IPython or the operating system. | |
68 |
|
68 | |||
69 | * A rich configuration system with easy switching between different setups |
|
69 | * A rich configuration system with easy switching between different setups | |
70 | (simpler than changing $PYTHONSTARTUP environment variables every time). |
|
70 | (simpler than changing $PYTHONSTARTUP environment variables every time). | |
71 |
|
71 | |||
72 | * Session logging and reloading. |
|
72 | * Session logging and reloading. | |
73 |
|
73 | |||
74 | * Extensible syntax processing for special purpose situations. |
|
74 | * Extensible syntax processing for special purpose situations. | |
75 |
|
75 | |||
76 | * Access to the system shell with user-extensible alias system. |
|
76 | * Access to the system shell with user-extensible alias system. | |
77 |
|
77 | |||
78 | * Easily embeddable in other Python programs and GUIs. |
|
78 | * Easily embeddable in other Python programs and GUIs. | |
79 |
|
79 | |||
80 | * Integrated access to the pdb debugger and the Python profiler. |
|
80 | * Integrated access to the pdb debugger and the Python profiler. | |
81 |
|
81 | |||
82 | The latest development version is always available from IPython's `GitHub |
|
82 | The latest development version is always available from IPython's `GitHub | |
83 | site <http://github.com/ipython>`_. |
|
83 | site <http://github.com/ipython>`_. | |
84 | """ |
|
84 | """ | |
85 |
|
85 | |||
86 | license = 'BSD' |
|
86 | license = 'BSD' | |
87 |
|
87 | |||
88 | authors = {'Fernando' : ('Fernando Perez','fperez.net@gmail.com'), |
|
88 | authors = {'Fernando' : ('Fernando Perez','fperez.net@gmail.com'), | |
89 | 'Janko' : ('Janko Hauser','jhauser@zscout.de'), |
|
89 | 'Janko' : ('Janko Hauser','jhauser@zscout.de'), | |
90 | 'Nathan' : ('Nathaniel Gray','n8gray@caltech.edu'), |
|
90 | 'Nathan' : ('Nathaniel Gray','n8gray@caltech.edu'), | |
91 | 'Ville' : ('Ville Vainio','vivainio@gmail.com'), |
|
91 | 'Ville' : ('Ville Vainio','vivainio@gmail.com'), | |
92 | 'Brian' : ('Brian E Granger', 'ellisonbg@gmail.com'), |
|
92 | 'Brian' : ('Brian E Granger', 'ellisonbg@gmail.com'), | |
93 | 'Min' : ('Min Ragan-Kelley', 'benjaminrk@gmail.com'), |
|
93 | 'Min' : ('Min Ragan-Kelley', 'benjaminrk@gmail.com'), | |
94 | 'Thomas' : ('Thomas A. Kluyver', 'takowl@gmail.com'), |
|
94 | 'Thomas' : ('Thomas A. Kluyver', 'takowl@gmail.com'), | |
95 | 'Jorgen' : ('Jorgen Stenarson', 'jorgen.stenarson@bostream.nu'), |
|
95 | 'Jorgen' : ('Jorgen Stenarson', 'jorgen.stenarson@bostream.nu'), | |
96 | 'Matthias' : ('Matthias Bussonnier', 'bussonniermatthias@gmail.com'), |
|
96 | 'Matthias' : ('Matthias Bussonnier', 'bussonniermatthias@gmail.com'), | |
97 | } |
|
97 | } | |
98 |
|
98 | |||
99 | author = 'The IPython Development Team' |
|
99 | author = 'The IPython Development Team' | |
100 |
|
100 | |||
101 | author_email = 'ipython-dev@python.org' |
|
101 | author_email = 'ipython-dev@python.org' | |
102 |
|
102 | |||
103 | url = 'https://ipython.org' |
|
103 | url = 'https://ipython.org' | |
104 |
|
104 | |||
105 |
|
105 | |||
106 | platforms = ['Linux','Mac OSX','Windows'] |
|
106 | platforms = ['Linux','Mac OSX','Windows'] | |
107 |
|
107 | |||
108 | keywords = ['Interactive','Interpreter','Shell', 'Embedding'] |
|
108 | keywords = ['Interactive','Interpreter','Shell', 'Embedding'] | |
109 |
|
109 | |||
110 | classifiers = [ |
|
110 | classifiers = [ | |
111 | 'Framework :: IPython', |
|
111 | 'Framework :: IPython', | |
112 | 'Intended Audience :: Developers', |
|
112 | 'Intended Audience :: Developers', | |
113 | 'Intended Audience :: Science/Research', |
|
113 | 'Intended Audience :: Science/Research', | |
114 | 'License :: OSI Approved :: BSD License', |
|
114 | 'License :: OSI Approved :: BSD License', | |
115 | 'Programming Language :: Python', |
|
115 | 'Programming Language :: Python', | |
116 | 'Programming Language :: Python :: 3', |
|
116 | 'Programming Language :: Python :: 3', | |
117 | 'Programming Language :: Python :: 3 :: Only', |
|
117 | 'Programming Language :: Python :: 3 :: Only', | |
118 | 'Topic :: System :: Shells' |
|
118 | 'Topic :: System :: Shells' | |
119 | ] |
|
119 | ] |
@@ -1,90 +1,108 b'' | |||||
1 | # Simple tool to help for release |
|
1 | # Simple tool to help for release | |
2 | # when releasing with bash, simplei source it to get asked questions. |
|
2 | # when releasing with bash, simplei source it to get asked questions. | |
3 |
|
3 | |||
4 | # misc check before starting |
|
4 | # misc check before starting | |
5 |
|
5 | |||
6 | python -c 'import keyring' |
|
6 | python -c 'import keyring' | |
7 | python -c 'import twine' |
|
7 | python -c 'import twine' | |
8 | python -c 'import sphinx' |
|
8 | python -c 'import sphinx' | |
9 | python -c 'import sphinx_rtd_theme' |
|
9 | python -c 'import sphinx_rtd_theme' | |
10 | python -c 'import nose' |
|
10 | python -c 'import nose' | |
11 |
|
11 | |||
12 | echo -n 'PREV_RELEASE (X.y.z):' |
|
12 | echo -n 'PREV_RELEASE (X.y.z):' | |
13 | read PREV_RELEASE |
|
13 | read PREV_RELEASE | |
14 | echo -n 'MILESTONE (X.y):' |
|
14 | echo -n 'MILESTONE (X.y):' | |
15 | read MILESTONE |
|
15 | read MILESTONE | |
16 | echo -n 'VERSION (X.y.z):' |
|
16 | echo -n 'VERSION (X.y.z):' | |
17 | read VERSION |
|
17 | read VERSION | |
18 | echo -n 'branch (master|X.y):' |
|
18 | echo -n 'branch (master|X.y):' | |
19 | read branch |
|
19 | read branch | |
20 |
|
20 | |||
21 | BLACK=$(tput setaf 1) |
|
21 | BLACK=$(tput setaf 1) | |
22 | RED=$(tput setaf 1) |
|
22 | RED=$(tput setaf 1) | |
23 | GREEN=$(tput setaf 2) |
|
23 | GREEN=$(tput setaf 2) | |
24 | YELLOW=$(tput setaf 3) |
|
24 | YELLOW=$(tput setaf 3) | |
25 | BLUE=$(tput setaf 4) |
|
25 | BLUE=$(tput setaf 4) | |
26 | MAGENTA=$(tput setaf 5) |
|
26 | MAGENTA=$(tput setaf 5) | |
27 | CYAN=$(tput setaf 6) |
|
27 | CYAN=$(tput setaf 6) | |
28 | WHITE=$(tput setaf 7) |
|
28 | WHITE=$(tput setaf 7) | |
29 | NOR=$(tput sgr0) |
|
29 | NOR=$(tput sgr0) | |
30 |
|
30 | |||
31 | echo |
|
31 | echo | |
32 | echo $BLUE"Updating what's new with informations from docs/source/whatsnew/pr"$NOR |
|
32 | echo $BLUE"Updating what's new with informations from docs/source/whatsnew/pr"$NOR | |
33 | python tools/update_whatsnew.py |
|
33 | python tools/update_whatsnew.py | |
34 |
|
34 | |||
35 | echo |
|
35 | echo | |
36 | echo $BLUE"please move the contents of "docs/source/whatsnew/development.rst" to version-X.rst"$NOR |
|
36 | echo $BLUE"please move the contents of "docs/source/whatsnew/development.rst" to version-X.rst"$NOR | |
37 | echo $GREEN"Press enter to continue"$NOR |
|
37 | echo $GREEN"Press enter to continue"$NOR | |
38 | read |
|
38 | read | |
39 |
|
39 | |||
40 | echo |
|
40 | echo | |
41 | echo $BLUE"here are all the authors that contributed to this release:"$NOR |
|
41 | echo $BLUE"here are all the authors that contributed to this release:"$NOR | |
42 | git log --format="%aN <%aE>" $PREV_RELEASE... | sort -u -f |
|
42 | git log --format="%aN <%aE>" $PREV_RELEASE... | sort -u -f | |
43 |
|
43 | |||
44 | echo |
|
44 | echo | |
45 | echo $BLUE"If you see any duplicates cancel (Ctrl-C), then edit .mailmap.\n"$GREEN"Press enter to continue:"$NOR |
|
45 | echo $BLUE"If you see any duplicates cancel (Ctrl-C), then edit .mailmap.\n"$GREEN"Press enter to continue:"$NOR | |
46 | read |
|
46 | read | |
47 |
|
47 | |||
48 | echo $BLUE"generating stats"$NOR |
|
48 | echo $BLUE"generating stats"$NOR | |
49 | python tools/github_stats.py --milestone $MILESTONE > stats.rst |
|
49 | python tools/github_stats.py --milestone $MILESTONE > stats.rst | |
50 |
|
50 | |||
51 | echo $BLUE"stats.rst files generated."$NOR |
|
51 | echo $BLUE"stats.rst files generated."$NOR | |
52 | echo $GREEN"Please merge it with the right file (github-stats-X.rst) and commit."$NOR |
|
52 | echo $GREEN"Please merge it with the right file (github-stats-X.rst) and commit."$NOR | |
53 | echo $GREEN"press enter to continue."$NOR |
|
53 | echo $GREEN"press enter to continue."$NOR | |
54 | read |
|
54 | read | |
55 |
|
55 | |||
56 | echo "Cleaning repository" |
|
56 | echo "Cleaning repository" | |
57 | git clean -xfdi |
|
57 | git clean -xfdi | |
58 |
|
58 | |||
59 | echo $GREEN"please update version number in ${RED}IPython/core/release.py${NOR} , Do not commit yet βΒ we'll do it later."$NOR |
|
59 | echo $GREEN"please update version number in ${RED}IPython/core/release.py${NOR} , Do not commit yet βΒ we'll do it later."$NOR | |
60 |
|
60 | |||
61 | echo $GREEN"Press enter to continue"$NOR |
|
61 | echo $GREEN"Press enter to continue"$NOR | |
62 | read |
|
62 | read | |
63 |
|
63 | |||
64 | echo |
|
64 | echo | |
65 | echo "Attempting to build the docs.." |
|
65 | echo "Attempting to build the docs.." | |
66 | make html -C docs |
|
66 | make html -C docs | |
67 |
|
67 | |||
68 | echo |
|
68 | echo | |
69 | echo $GREEN"Check the docs, press enter to continue"$NOR |
|
69 | echo $GREEN"Check the docs, press enter to continue"$NOR | |
70 | read |
|
70 | read | |
71 |
|
71 | |||
72 | echo |
|
72 | echo | |
73 | echo $BLUE"Attempting to build package..."$NOR |
|
73 | echo $BLUE"Attempting to build package..."$NOR | |
74 |
|
74 | |||
75 | tools/build_release |
|
75 | tools/build_release | |
76 |
|
76 | |||
77 | echo |
|
77 | echo | |
78 | echo "Let's commit : git commit -am \"release $VERSION\" -S" |
|
78 | echo "Let's commit : git commit -am \"release $VERSION\" -S" | |
79 | echo $GREEN"Press enter to commit"$NOR |
|
79 | echo $GREEN"Press enter to commit"$NOR | |
80 | read |
|
80 | read | |
81 | git commit -am "release $VERSION" -S |
|
81 | git commit -am "release $VERSION" -S | |
82 |
|
82 | |||
83 | echo |
|
83 | echo | |
84 | echo "git push origin \$BRANCH ?" |
|
84 | echo $BLUE"git push origin \$BRANCH ($BRANCH)?"$NOR | |
85 | echo "Press enter to continue" |
|
85 | echo $GREEN"Make sure you can push"$NOR | |
|
86 | echo $GREEN"Press enter to continue"$NOR | |||
86 | read |
|
87 | read | |
87 | git push origin $BRANCH |
|
88 | git push origin $BRANCH | |
88 | # git tag -am "release $VERSION" "$VERSION" -s |
|
89 | ||
89 | # git push origin $VERSION |
|
90 | echo | |
|
91 | echo "Let's tag : git tag -am \"release $VERSION\" \"$VERSION\" -s" | |||
|
92 | echo $GREEN"Press enter to wtagcommit"$NOR | |||
|
93 | read | |||
|
94 | git tag -am "release $VERSION" "$VERSION" -s | |||
|
95 | ||||
|
96 | echo | |||
|
97 | echo $BLUE"And push the tag: git push origin \$VERSION ?"$NOR | |||
|
98 | echo $GREEN"Press enter to continue"$NOR | |||
|
99 | read | |||
|
100 | git push origin $VERSION | |||
|
101 | ||||
|
102 | echo | |||
|
103 | echo $BLUE"let's : git checkout $VERSION"$NOR | |||
|
104 | echo $GREEN"Press enter to continue"$NOR | |||
|
105 | read | |||
|
106 | git checkout $VERSION | |||
|
107 | ||||
90 |
|
|
108 |
General Comments 0
You need to be logged in to leave comments.
Login now