Commit 122861a3 authored by Tres Seaver's avatar Tres Seaver

Quit mangling non-ASCII characters in changelog to work around Sphinx bug.

Instead, just remove the non-ASCII characters, regaining Python 3.2 compat.
parent 68d8bca1
...@@ -309,7 +309,7 @@ Bugs fixed ...@@ -309,7 +309,7 @@ Bugs fixed
their subconnections weren't cleaned up properly. their subconnections weren't cleaned up properly.
- ZEO didn't work with IPv6 addrsses. - ZEO didn't work with IPv6 addrsses.
Added IPv6 support contributed by Martin v. Löwis. Added IPv6 support contributed by Martin v. Loewis.
- A file storage bug could cause ZEO clients to have incorrect - A file storage bug could cause ZEO clients to have incorrect
information about current object revisions after reconnecting to a information about current object revisions after reconnecting to a
......
...@@ -41,8 +41,12 @@ classifiers = """\ ...@@ -41,8 +41,12 @@ classifiers = """\
Intended Audience :: Developers Intended Audience :: Developers
License :: OSI Approved :: Zope Public License License :: OSI Approved :: Zope Public License
Programming Language :: Python Programming Language :: Python
Programming Language :: Python :: 2
Programming Language :: Python :: 2.6 Programming Language :: Python :: 2.6
Programming Language :: Python :: 2.7 Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.2
Programming Language :: Python :: 3.3
Topic :: Database Topic :: Database
Topic :: Software Development :: Libraries :: Python Modules Topic :: Software Development :: Libraries :: Python Modules
Operating System :: Microsoft :: Windows Operating System :: Microsoft :: Windows
...@@ -101,9 +105,7 @@ long_description = str( ...@@ -101,9 +105,7 @@ long_description = str(
("\n".join(doclines[2:]) + "\n\n" + ("\n".join(doclines[2:]) + "\n\n" +
".. contents::\n\n" + ".. contents::\n\n" +
read_file("README.rst").decode('latin-1') + "\n\n" + read_file("README.rst").decode('latin-1') + "\n\n" +
read_file("CHANGES.rst").decode('latin-1') read_file("CHANGES.rst").decode('latin-1')))
).replace(u'L\xf6wis', '|Lowis|')
)+ '''\n\n.. |Lowis| unicode:: L \\xf6 wis\n'''
tests_require = ['zope.testing', 'manuel'] tests_require = ['zope.testing', 'manuel']
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment