Hello community, here is the log from the commit of package python3-alabaster for openSUSE:Factory checked in at 2015-07-20 11:22:24 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python3-alabaster (Old) and /work/SRC/openSUSE:Factory/.python3-alabaster.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python3-alabaster" Changes: -------- --- /work/SRC/openSUSE:Factory/python3-alabaster/python3-alabaster.changes 2015-07-14 17:44:35.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.python3-alabaster.new/python3-alabaster.changes 2015-07-20 11:22:37.000000000 +0200 @@ -1,0 +2,17 @@ +Sat Jul 18 21:09:01 UTC 2015 - [email protected] + +- update to version 0.7.6: + * Update how setup.py handles the README.rst file - load it + explicitly as UTF-8 so the changelog containing non-ASCII + characters doesn't generate UnicodeDecodeError in terminal + environments whose default encoding is not UTF-8 or other + Unicode-compatible encodings. Thanks to Arun Persaud for the + report and Max Tepkeev for the suggested fix. + * Fix left-margin & padding styling for code blocks within list-item + elements, making them consistent with earlier changes applied to + top-level code blocks. + * Expose page & sidebar widths as theme options page_width and + sidebar_width. Their defaults are the same as the previously + static values. + +------------------------------------------------------------------- @@ -5,0 +23,25 @@ + +------------------------------------------------------------------- +Tue Jun 16 04:05:18 UTC 2015 - [email protected] + +- update to version 0.7.5: + * Honor Sphinx's core html_show_copyright option when rendering page + footer. Thanks to Marcin Wojdyr for the report. + * Pre-history versions of Alabaster attempted to remove the + "related" sub-navigation (typically found as next/previous links + in other themes) but this didn't work right for mobile-oriented + styling. + * This has been fixed by (re-)adding an improved sidebar nav element + for these links and making its display controllable via the new + show_related theme option (which defaults to False for backwards + compatibility). + NOTE: to enable the related-links nav, you'll need to set + show_related to True and add relations.html to your html_sidebars + (we've updated the example config in this README to indicate this + for new installs). + Thanks to Tomi Pieviläinen for the bug report. + * Update the "Fork me on Github" banner image to use an https:// URI + so sites hosted over HTTPS don't encounter mixed-content + errors. Thanks to @nikolas for the patch. + * Remove an orphaned </li> from the footer 'show source' + section. Credit to Marcin Wojdyr. Old: ---- alabaster-0.7.4.tar.gz New: ---- alabaster-0.7.6.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python3-alabaster.spec ++++++ --- /var/tmp/diff_new_pack.Ea9tDR/_old 2015-07-20 11:22:39.000000000 +0200 +++ /var/tmp/diff_new_pack.Ea9tDR/_new 2015-07-20 11:22:39.000000000 +0200 @@ -1,7 +1,7 @@ # # spec file for package python3-alabaster # -# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,7 +17,7 @@ Name: python3-alabaster -Version: 0.7.4 +Version: 0.7.6 Release: 0 Summary: Modified Kr Sphinx doc theme License: BSD-3-Clause ++++++ alabaster-0.7.4.tar.gz -> alabaster-0.7.6.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/alabaster-0.7.4/PKG-INFO new/alabaster-0.7.6/PKG-INFO --- old/alabaster-0.7.4/PKG-INFO 2015-05-04 04:44:54.000000000 +0200 +++ new/alabaster-0.7.6/PKG-INFO 2015-06-23 07:22:53.000000000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 1.1 Name: alabaster -Version: 0.7.4 +Version: 0.7.6 Summary: A configurable sidebar-enabled Sphinx theme Home-page: https://github.com/bitprophet/alabaster Author: Jeff Forcier @@ -33,7 +33,8 @@ Eric's sphinx_rtd_theme <https://github.com/snide/sphinx_rtd_theme>`_ for showing the way); * Style tweaks, such as better code-block alignment, Gratipay and Github button - placement, page source link moved to footer, etc; + placement, page source link moved to footer, improved (optional) + related-items sidebar item, etc; * Many customization hooks, including toggle of various sidebar & footer components; header/link/etc color control; etc; * Improved documentation for all customizations (pre-existing & new). @@ -57,7 +58,11 @@ html_theme = 'alabaster' html_sidebars = { '**': [ - 'about.html', 'navigation.html', 'searchbox.html', 'donate.html', + 'about.html', + 'navigation.html', + 'relations.html', + 'searchbox.html', + 'donate.html', ] } @@ -186,8 +191,15 @@ can use ``:hidden:`` in your index page's root toctree & avoid having 2x copies of your navigation on your landing page. * ``show_powered_by``: Boolean controlling display of the ``Powered by - Sphinx N.N.N. & Alabaster M.M.M`` section of the footer. When True, is - displayed next to the copyright information; when False, is hidden. + Sphinx N.N.N. & Alabaster M.M.M`` section of the footer. When ``true``, is + displayed next to the copyright information; when ``false``, is hidden. + * ``show_related``: Boolean controlling whether the 'next/previous/related' + secondary navigation elements are hidden or displayed. Defaults to ``false`` + since on many sites these elements are superfluous. + * ``page_width``: CSS width specifier controlling default content/page width. + Defaults to ``940px``. + * ``sidebar_width``: CSS width specifier controlling default sidebar width. + Defaults to ``220px``. Style colors ------------ @@ -384,6 +396,45 @@ * Add ``code_highlight`` option (which includes general fixes to styling of code blocks containing highlighted lines). Thanks to Steven Loria. + 0.7.5 (2015-06-15) + ------------------ + + * Honor Sphinx's core ``html_show_copyright`` option when rendering page + footer. Thanks to Marcin Wojdyr for the report. + * Pre-history versions of Alabaster attempted to remove the "related" + sub-navigation (typically found as next/previous links in other themes) but + this didn't work right for mobile-oriented styling. + + This has been fixed by (re-)adding an improved sidebar nav element for these + links and making its display controllable via the new ``show_related`` theme + option (which defaults to ``false`` for backwards compatibility). + + **NOTE**: to enable the related-links nav, you'll need to set + ``show_related`` to ``true`` **and** add ``relations.html`` to your + ``html_sidebars`` (we've updated the example config in this README to + indicate this for new installs). + + Thanks to Tomi Pieviläinen for the bug report. + * Update the "Fork me on Github" banner image to use an ``https://`` URI so + sites hosted over HTTPS don't encounter mixed-content errors. Thanks to + ``@nikolas`` for the patch. + * Remove an orphaned ``</li>`` from the footer 'show source' section. Credit to + Marcin Wojdyr. + + 0.7.6 (2015-06-22) + ------------------ + + * Update how ``setup.py`` handles the ``README.rst`` file - load it explicitly + as UTF-8 so the changelog containing non-ASCII characters doesn't generate + ``UnicodeDecodeError`` in terminal environments whose default encoding is not + UTF-8 or other Unicode-compatible encodings. Thanks to Arun Persaud for the + report and Max Tepkeev for the suggested fix. + * Fix left-margin & padding styling for code blocks within list-item elements, + making them consistent with earlier changes applied to top-level code blocks. + * Expose page & sidebar widths as theme options ``page_width`` and + ``sidebar_width``. Their defaults are the same as the previously static + values. + Platform: UNKNOWN Classifier: Intended Audience :: Developers Classifier: License :: OSI Approved :: BSD License diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/alabaster-0.7.4/README.rst new/alabaster-0.7.6/README.rst --- old/alabaster-0.7.4/README.rst 2015-05-04 02:11:54.000000000 +0200 +++ new/alabaster-0.7.6/README.rst 2015-06-23 07:22:28.000000000 +0200 @@ -25,7 +25,8 @@ Eric's sphinx_rtd_theme <https://github.com/snide/sphinx_rtd_theme>`_ for showing the way); * Style tweaks, such as better code-block alignment, Gratipay and Github button - placement, page source link moved to footer, etc; + placement, page source link moved to footer, improved (optional) + related-items sidebar item, etc; * Many customization hooks, including toggle of various sidebar & footer components; header/link/etc color control; etc; * Improved documentation for all customizations (pre-existing & new). @@ -49,7 +50,11 @@ html_theme = 'alabaster' html_sidebars = { '**': [ - 'about.html', 'navigation.html', 'searchbox.html', 'donate.html', + 'about.html', + 'navigation.html', + 'relations.html', + 'searchbox.html', + 'donate.html', ] } @@ -178,8 +183,15 @@ can use ``:hidden:`` in your index page's root toctree & avoid having 2x copies of your navigation on your landing page. * ``show_powered_by``: Boolean controlling display of the ``Powered by - Sphinx N.N.N. & Alabaster M.M.M`` section of the footer. When True, is - displayed next to the copyright information; when False, is hidden. + Sphinx N.N.N. & Alabaster M.M.M`` section of the footer. When ``true``, is + displayed next to the copyright information; when ``false``, is hidden. +* ``show_related``: Boolean controlling whether the 'next/previous/related' + secondary navigation elements are hidden or displayed. Defaults to ``false`` + since on many sites these elements are superfluous. +* ``page_width``: CSS width specifier controlling default content/page width. + Defaults to ``940px``. +* ``sidebar_width``: CSS width specifier controlling default sidebar width. + Defaults to ``220px``. Style colors ------------ @@ -375,3 +387,42 @@ * Add ``code_highlight`` option (which includes general fixes to styling of code blocks containing highlighted lines). Thanks to Steven Loria. + +0.7.5 (2015-06-15) +------------------ + +* Honor Sphinx's core ``html_show_copyright`` option when rendering page + footer. Thanks to Marcin Wojdyr for the report. +* Pre-history versions of Alabaster attempted to remove the "related" + sub-navigation (typically found as next/previous links in other themes) but + this didn't work right for mobile-oriented styling. + + This has been fixed by (re-)adding an improved sidebar nav element for these + links and making its display controllable via the new ``show_related`` theme + option (which defaults to ``false`` for backwards compatibility). + + **NOTE**: to enable the related-links nav, you'll need to set + ``show_related`` to ``true`` **and** add ``relations.html`` to your + ``html_sidebars`` (we've updated the example config in this README to + indicate this for new installs). + + Thanks to Tomi Pieviläinen for the bug report. +* Update the "Fork me on Github" banner image to use an ``https://`` URI so + sites hosted over HTTPS don't encounter mixed-content errors. Thanks to + ``@nikolas`` for the patch. +* Remove an orphaned ``</li>`` from the footer 'show source' section. Credit to + Marcin Wojdyr. + +0.7.6 (2015-06-22) +------------------ + +* Update how ``setup.py`` handles the ``README.rst`` file - load it explicitly + as UTF-8 so the changelog containing non-ASCII characters doesn't generate + ``UnicodeDecodeError`` in terminal environments whose default encoding is not + UTF-8 or other Unicode-compatible encodings. Thanks to Arun Persaud for the + report and Max Tepkeev for the suggested fix. +* Fix left-margin & padding styling for code blocks within list-item elements, + making them consistent with earlier changes applied to top-level code blocks. +* Expose page & sidebar widths as theme options ``page_width`` and + ``sidebar_width``. Their defaults are the same as the previously static + values. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/alabaster-0.7.4/alabaster/_version.py new/alabaster-0.7.6/alabaster/_version.py --- old/alabaster-0.7.4/alabaster/_version.py 2015-05-04 02:12:12.000000000 +0200 +++ new/alabaster-0.7.6/alabaster/_version.py 2015-06-18 19:33:13.000000000 +0200 @@ -1,2 +1,2 @@ -__version_info__ = (0, 7, 4) +__version_info__ = (0, 7, 6) __version__ = '.'.join(map(str, __version_info__)) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/alabaster-0.7.4/alabaster/layout.html new/alabaster-0.7.6/alabaster/layout.html --- old/alabaster-0.7.4/alabaster/layout.html 2015-01-26 22:53:29.000000000 +0100 +++ new/alabaster-0.7.6/alabaster/layout.html 2015-06-15 22:02:18.000000000 +0200 @@ -1,4 +1,5 @@ {%- extends "basic/layout.html" %} + {%- block extrahead %} {{ super() }} {% if theme_touch_icon %} @@ -6,25 +7,29 @@ {% endif %} <meta name="viewport" content="width=device-width, initial-scale=0.9, maximum-scale=0.9"> {% endblock %} + +{# Disable base theme's top+bottom related navs; we have our own in sidebar #} +{%- block relbar1 %}{% endblock %} {%- block relbar2 %}{% endblock %} + {%- block footer %} <div class="footer"> - ©{{ copyright }}. + {% if show_copyright %}©{{ copyright }}.{% endif %} {% if theme_show_powered_by|lower == 'true' %} - | + {% if show_copyright %}|{% endif %} Powered by <a href="http://sphinx-doc.org/">Sphinx {{ sphinx_version }}</a> & <a href="https://github.com/bitprophet/alabaster">Alabaster {{ alabaster_version }}</a> {% endif %} {%- if show_source and has_source and sourcename %} - | + {% if show_copyright or theme_show_powered_by %}|{% endif %} <a href="{{ pathto('_sources/' + sourcename, true)|e }}" - rel="nofollow">{{ _('Page source') }}</a></li> + rel="nofollow">{{ _('Page source') }}</a> {%- endif %} </div> {% if theme_github_banner|lower != 'false' %} <a href="https://github.com/{{ theme_github_user }}/{{ theme_github_repo }}" class="github"> - <img style="position: absolute; top: 0; right: 0; border: 0;" src="{{ pathto('_static/' ~ theme_github_banner, 1) if theme_github_banner|lower != 'true' else 'http://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png' }}" alt="Fork me on GitHub" class="github"/> + <img style="position: absolute; top: 0; right: 0; border: 0;" src="{{ pathto('_static/' ~ theme_github_banner, 1) if theme_github_banner|lower != 'true' else 'https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png' }}" alt="Fork me on GitHub" class="github"/> </a> {% endif %} diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/alabaster-0.7.4/alabaster/relations.html new/alabaster-0.7.6/alabaster/relations.html --- old/alabaster-0.7.4/alabaster/relations.html 1970-01-01 01:00:00.000000000 +0100 +++ new/alabaster-0.7.6/alabaster/relations.html 2015-05-21 21:03:33.000000000 +0200 @@ -0,0 +1,21 @@ +<div class="relations"> +<h3>Related Topics</h3> +<ul> + <li><a href="{{ pathto(master_doc) }}">Documentation overview</a><ul> + {%- for parent in parents %} + <li><a href="{{ parent.link|e }}">{{ parent.title }}</a><ul> + {%- endfor %} + {%- if prev %} + <li>Previous: <a href="{{ prev.link|e }}" title="{{ _('previous chapter') + }}">{{ prev.title }}</a></li> + {%- endif %} + {%- if next %} + <li>Next: <a href="{{ next.link|e }}" title="{{ _('next chapter') + }}">{{ next.title }}</a></li> + {%- endif %} + {%- for parent in parents %} + </ul></li> + {%- endfor %} + </ul></li> +</ul> +</div> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/alabaster-0.7.4/alabaster/static/alabaster.css_t new/alabaster-0.7.6/alabaster/static/alabaster.css_t --- old/alabaster-0.7.4/alabaster/static/alabaster.css_t 2015-05-04 02:04:56.000000000 +0200 +++ new/alabaster-0.7.6/alabaster/static/alabaster.css_t 2015-06-18 20:29:39.000000000 +0200 @@ -1,6 +1,3 @@ -{% set page_width = '940px' %} -{% set sidebar_width = '220px' %} - {% set theme_sidebar_header = theme_sidebar_header or theme_gray_1 %} {% set theme_sidebar_link = theme_sidebar_link or theme_gray_1 %} {% set theme_anchor_hover_fg = theme_anchor_hover_fg or theme_gray_1 %} @@ -32,7 +29,7 @@ } div.document { - width: {{ page_width }}; + width: {{ theme_page_width }}; margin: 30px auto 0 auto; } @@ -42,11 +39,11 @@ } div.bodywrapper { - margin: 0 0 0 {{ sidebar_width }}; + margin: 0 0 0 {{ theme_sidebar_width }}; } div.sphinxsidebar { - width: {{ sidebar_width }}; + width: {{ theme_sidebar_width }}; } hr { @@ -60,7 +57,7 @@ } div.footer { - width: {{ page_width }}; + width: {{ theme_page_width }}; margin: 20px auto 30px auto; font-size: 14px; color: {{ theme_footer_text }}; @@ -71,9 +68,11 @@ color: {{ theme_footer_text }}; } -div.related { +{% if theme_show_related|lower == 'false' %} +div.relations { display: none; } +{% endif %} div.sphinxsidebar a { color: {{ theme_sidebar_link }}; @@ -387,8 +386,8 @@ } dl pre, blockquote pre, li pre { - margin-left: -60px; - padding-left: 60px; + margin-left: 0; + padding-left: 30px; } dl dl pre { @@ -527,18 +526,6 @@ margin: 0; } - div.related { - display: block; - margin: 0; - padding: 10px 0 20px 0; - } - - div.related ul, - div.related ul li { - margin: 0; - padding: 0; - } - div.footer { display: none; } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/alabaster-0.7.4/alabaster/theme.conf new/alabaster-0.7.6/alabaster/theme.conf --- old/alabaster-0.7.4/alabaster/theme.conf 2015-05-04 02:04:56.000000000 +0200 +++ new/alabaster-0.7.6/alabaster/theme.conf 2015-06-18 20:29:39.000000000 +0200 @@ -23,6 +23,7 @@ extra_nav_links = sidebar_includehidden = true show_powered_by = true +show_related = false gray_1 = #444 gray_2 = #EEE @@ -62,3 +63,5 @@ font_family = 'goudy old style', 'minion pro', 'bell mt', Georgia, 'Hiragino Mincho Pro', serif head_font_family = 'Garamond', 'Georgia', serif code_highlight = #FFC +page_width = 940px +sidebar_width = 220px diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/alabaster-0.7.4/alabaster.egg-info/PKG-INFO new/alabaster-0.7.6/alabaster.egg-info/PKG-INFO --- old/alabaster-0.7.4/alabaster.egg-info/PKG-INFO 2015-05-04 04:44:54.000000000 +0200 +++ new/alabaster-0.7.6/alabaster.egg-info/PKG-INFO 2015-06-23 07:22:53.000000000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 1.1 Name: alabaster -Version: 0.7.4 +Version: 0.7.6 Summary: A configurable sidebar-enabled Sphinx theme Home-page: https://github.com/bitprophet/alabaster Author: Jeff Forcier @@ -33,7 +33,8 @@ Eric's sphinx_rtd_theme <https://github.com/snide/sphinx_rtd_theme>`_ for showing the way); * Style tweaks, such as better code-block alignment, Gratipay and Github button - placement, page source link moved to footer, etc; + placement, page source link moved to footer, improved (optional) + related-items sidebar item, etc; * Many customization hooks, including toggle of various sidebar & footer components; header/link/etc color control; etc; * Improved documentation for all customizations (pre-existing & new). @@ -57,7 +58,11 @@ html_theme = 'alabaster' html_sidebars = { '**': [ - 'about.html', 'navigation.html', 'searchbox.html', 'donate.html', + 'about.html', + 'navigation.html', + 'relations.html', + 'searchbox.html', + 'donate.html', ] } @@ -186,8 +191,15 @@ can use ``:hidden:`` in your index page's root toctree & avoid having 2x copies of your navigation on your landing page. * ``show_powered_by``: Boolean controlling display of the ``Powered by - Sphinx N.N.N. & Alabaster M.M.M`` section of the footer. When True, is - displayed next to the copyright information; when False, is hidden. + Sphinx N.N.N. & Alabaster M.M.M`` section of the footer. When ``true``, is + displayed next to the copyright information; when ``false``, is hidden. + * ``show_related``: Boolean controlling whether the 'next/previous/related' + secondary navigation elements are hidden or displayed. Defaults to ``false`` + since on many sites these elements are superfluous. + * ``page_width``: CSS width specifier controlling default content/page width. + Defaults to ``940px``. + * ``sidebar_width``: CSS width specifier controlling default sidebar width. + Defaults to ``220px``. Style colors ------------ @@ -384,6 +396,45 @@ * Add ``code_highlight`` option (which includes general fixes to styling of code blocks containing highlighted lines). Thanks to Steven Loria. + 0.7.5 (2015-06-15) + ------------------ + + * Honor Sphinx's core ``html_show_copyright`` option when rendering page + footer. Thanks to Marcin Wojdyr for the report. + * Pre-history versions of Alabaster attempted to remove the "related" + sub-navigation (typically found as next/previous links in other themes) but + this didn't work right for mobile-oriented styling. + + This has been fixed by (re-)adding an improved sidebar nav element for these + links and making its display controllable via the new ``show_related`` theme + option (which defaults to ``false`` for backwards compatibility). + + **NOTE**: to enable the related-links nav, you'll need to set + ``show_related`` to ``true`` **and** add ``relations.html`` to your + ``html_sidebars`` (we've updated the example config in this README to + indicate this for new installs). + + Thanks to Tomi Pieviläinen for the bug report. + * Update the "Fork me on Github" banner image to use an ``https://`` URI so + sites hosted over HTTPS don't encounter mixed-content errors. Thanks to + ``@nikolas`` for the patch. + * Remove an orphaned ``</li>`` from the footer 'show source' section. Credit to + Marcin Wojdyr. + + 0.7.6 (2015-06-22) + ------------------ + + * Update how ``setup.py`` handles the ``README.rst`` file - load it explicitly + as UTF-8 so the changelog containing non-ASCII characters doesn't generate + ``UnicodeDecodeError`` in terminal environments whose default encoding is not + UTF-8 or other Unicode-compatible encodings. Thanks to Arun Persaud for the + report and Max Tepkeev for the suggested fix. + * Fix left-margin & padding styling for code blocks within list-item elements, + making them consistent with earlier changes applied to top-level code blocks. + * Expose page & sidebar widths as theme options ``page_width`` and + ``sidebar_width``. Their defaults are the same as the previously static + values. + Platform: UNKNOWN Classifier: Intended Audience :: Developers Classifier: License :: OSI Approved :: BSD License diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/alabaster-0.7.4/alabaster.egg-info/SOURCES.txt new/alabaster-0.7.6/alabaster.egg-info/SOURCES.txt --- old/alabaster-0.7.4/alabaster.egg-info/SOURCES.txt 2015-05-04 04:44:54.000000000 +0200 +++ new/alabaster-0.7.6/alabaster.egg-info/SOURCES.txt 2015-06-23 07:22:53.000000000 +0200 @@ -8,6 +8,7 @@ alabaster/donate.html alabaster/layout.html alabaster/navigation.html +alabaster/relations.html alabaster/support.py alabaster/theme.conf alabaster.egg-info/PKG-INFO diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/alabaster-0.7.4/setup.py new/alabaster-0.7.6/setup.py --- old/alabaster-0.7.4/setup.py 2015-02-27 23:22:01.000000000 +0100 +++ new/alabaster-0.7.6/setup.py 2015-06-18 02:48:53.000000000 +0200 @@ -1,5 +1,6 @@ #!/usr/bin/env python +import codecs from setuptools import setup # Version info -- read without importing @@ -9,7 +10,7 @@ version = _locals['__version__'] # README into long description -with open('README.rst') as f: +with codecs.open('README.rst', encoding='utf-8') as f: readme = f.read() setup(
