##// END OF EJS Templates
Remove pycolor script
Thomas Kluyver -
Show More
@@ -0,0 +1,4 b''
1 * The :command:`pycolor` command has been removed. We recommend the much more capable
2 :command:`pygmentize` command from the `Pygments <http://pygments.org/>`_ project.
3 If you need to keep the exact output of :command:`pycolor`, you can still use
4 ``python -m IPython.utils.PyColorize foo.py``.
@@ -185,10 +185,6 b" if len(sys.argv) >= 2 and sys.argv[1] in ('sdist','bdist_rpm'):"
185 ('docs/man/irunner.1.gz',
185 ('docs/man/irunner.1.gz',
186 ['docs/man/irunner.1'],
186 ['docs/man/irunner.1'],
187 'cd docs/man && gzip -9c irunner.1 > irunner.1.gz'),
187 'cd docs/man && gzip -9c irunner.1 > irunner.1.gz'),
188
189 ('docs/man/pycolor.1.gz',
190 ['docs/man/pycolor.1'],
191 'cd docs/man && gzip -9c pycolor.1 > pycolor.1.gz'),
192 ]
188 ]
193
189
194
190
@@ -319,7 +319,6 b" def find_scripts(entry_points=False, suffix=''):"
319 if entry_points:
319 if entry_points:
320 console_scripts = [s % suffix for s in [
320 console_scripts = [s % suffix for s in [
321 'ipython%s = IPython:start_ipython',
321 'ipython%s = IPython:start_ipython',
322 'pycolor%s = IPython.utils.PyColorize:main',
323 'ipcontroller%s = IPython.parallel.apps.ipcontrollerapp:launch_new_instance',
322 'ipcontroller%s = IPython.parallel.apps.ipcontrollerapp:launch_new_instance',
324 'ipengine%s = IPython.parallel.apps.ipengineapp:launch_new_instance',
323 'ipengine%s = IPython.parallel.apps.ipengineapp:launch_new_instance',
325 'iplogger%s = IPython.parallel.apps.iploggerapp:launch_new_instance',
324 'iplogger%s = IPython.parallel.apps.iploggerapp:launch_new_instance',
@@ -338,7 +337,6 b" def find_scripts(entry_points=False, suffix=''):"
338 pjoin(parallel_scripts, 'ipcluster'),
337 pjoin(parallel_scripts, 'ipcluster'),
339 pjoin(parallel_scripts, 'iplogger'),
338 pjoin(parallel_scripts, 'iplogger'),
340 pjoin(main_scripts, 'ipython'),
339 pjoin(main_scripts, 'ipython'),
341 pjoin(main_scripts, 'pycolor'),
342 pjoin(main_scripts, 'irunner'),
340 pjoin(main_scripts, 'irunner'),
343 pjoin(main_scripts, 'iptest')
341 pjoin(main_scripts, 'iptest')
344 ]
342 ]
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
General Comments 0
You need to be logged in to leave comments. Login now