From: Benjamin R. <ben...@ou...> - 2013-06-01 18:22:38
|
Just tried building the docs for the tip of the v1.3.x branch, and it errors out fairly quickly with some sort of ascii codec error. This is for python 2.7 on ubuntu 12.04. ben@tigger:~/Programs/matplotlib/doc$ python make.py html Running Sphinx v1.2b1 Initializing GitHub plugin loading pickled environment... not yet created [autosummary] generating autosummary for: api/afm_api.rst, api/animation_api.rst, api/api_changes.rst, api/artist_api.rst, api/axes_api.rst, api/axis_api.rst, api/backend_bases_api.rst, api/backend_gtkagg_api.rst, api/backend_pdf_api.rst, api/backend_qt4agg_api.rst, ..., users/pyplot_tutorial.rst, users/recipes.rst, users/screenshots.rst, users/shell.rst, users/text_intro.rst, users/text_props.rst, users/tight_layout_guide.rst, users/transforms_tutorial.rst, users/usetex.rst, users/whats_new.rst animation, api, axes_grid, color, event_handling, images_contours_and_fields, lines_bars_and_markers, misc, mplot3d, old_animation, pie_and_polar_charts, pylab_examples, shapes_and_collections, showcase, specialty_plots, statistics, subplots_axes_and_figures, tests, text_labels_and_annotations, ticks_and_spines, units, user_interfaces, widgets, building [html]: targets for 111 source files that are out of date updating environment: 587 added, 0 changed, 0 removed reading sources... [ 0%] api/artist_api Sphinx error: 'ascii' codec can't encode character u'\xe9' in position 168: ordinal not in range(128) Building HTML failed. |
From: Michael D. <md...@st...> - 2013-06-03 14:29:36
|
Any chance you can get the full traceback? I've always seen Sphinx say "for the full traceback, see this file..." Is it not displaying anything like that for you? Mike On 06/01/2013 02:22 PM, Benjamin Root wrote: > Just tried building the docs for the tip of the v1.3.x branch, and it > errors out fairly quickly with some sort of ascii codec error. This > is for python 2.7 on ubuntu 12.04. > > ben@tigger:~/Programs/matplotlib/doc$ python make.py html > Running Sphinx v1.2b1 > Initializing GitHub plugin > loading pickled environment... not yet created > [autosummary] generating autosummary for: api/afm_api.rst, > api/animation_api.rst, api/api_changes.rst, api/artist_api.rst, > api/axes_api.rst, api/axis_api.rst, api/backend_bases_api.rst, > api/backend_gtkagg_api.rst, api/backend_pdf_api.rst, > api/backend_qt4agg_api.rst, ..., users/pyplot_tutorial.rst, > users/recipes.rst, users/screenshots.rst, users/shell.rst, > users/text_intro.rst, users/text_props.rst, > users/tight_layout_guide.rst, users/transforms_tutorial.rst, > users/usetex.rst, users/whats_new.rst > animation, api, axes_grid, color, event_handling, > images_contours_and_fields, lines_bars_and_markers, misc, mplot3d, > old_animation, pie_and_polar_charts, pylab_examples, > shapes_and_collections, showcase, specialty_plots, statistics, > subplots_axes_and_figures, tests, text_labels_and_annotations, > ticks_and_spines, units, user_interfaces, widgets, > building [html]: targets for 111 source files that are out of date > updating environment: 587 added, 0 changed, 0 removed > reading sources... [ 0%] api/artist_api > Sphinx error: > 'ascii' codec can't encode character u'\xe9' in position 168: ordinal > not in range(128) > Building HTML failed. > > > > ------------------------------------------------------------------------------ > Get 100% visibility into Java/.NET code with AppDynamics Lite > It's a free troubleshooting tool designed for production > Get down to code-level detail for bottlenecks, with <2% overhead. > Download for free and get started troubleshooting in minutes. > http://p.sf.net/sfu/appdyn_d2d_ap2 > > > _______________________________________________ > Matplotlib-devel mailing list > Mat...@li... > https://lists.sourceforge.net/lists/listinfo/matplotlib-devel |
From: Benjamin R. <ben...@ou...> - 2013-06-03 14:36:15
|
No, there was no such message. That is all that was displayed to my screen. |
From: Nelle V. <nel...@gm...> - 2013-06-03 20:54:20
|
> No, there was no such message. That is all that was displayed to my > screen. > I've seen this error before, and I think cleaning up all sphinx caching and temporary files "fixed" it. Try running a python make.py clean before building the documention. Cheers, N > > > > ------------------------------------------------------------------------------ > Get 100% visibility into Java/.NET code with AppDynamics Lite > It's a free troubleshooting tool designed for production > Get down to code-level detail for bottlenecks, with <2% overhead. > Download for free and get started troubleshooting in minutes. > http://p.sf.net/sfu/appdyn_d2d_ap2 > _______________________________________________ > Matplotlib-devel mailing list > Mat...@li... > https://lists.sourceforge.net/lists/listinfo/matplotlib-devel > > |
From: Benjamin R. <ben...@ou...> - 2013-06-08 13:47:39
|
So, I tried all of that without much useful insight gained. I decided to grep around for that unicode character, but it doesn't exist in any of the sources (only images and font files). I am now wondering if it is an obscure issue with sphinx. Looks like I am going to have to crack open that mercurial book... Ben Root |