Skip to content

Commit

Permalink
Quit mangling non-ASCII characters in changelog to work around Sphinx…
Browse files Browse the repository at this point in the history
… bug.

Instead, just remove the non-ASCII characters, regaining Python 3.2 compat.
  • Loading branch information
tseaver committed Mar 2, 2013
1 parent 68d8bca commit 122861a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGES.rst
Expand Up @@ -309,7 +309,7 @@ Bugs fixed
their subconnections weren't cleaned up properly.

- 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
information about current object revisions after reconnecting to a
Expand Down
8 changes: 5 additions & 3 deletions setup.py
Expand Up @@ -41,8 +41,12 @@
Intended Audience :: Developers
License :: OSI Approved :: Zope Public License
Programming Language :: Python
Programming Language :: Python :: 2
Programming Language :: Python :: 2.6
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.2
Programming Language :: Python :: 3.3
Topic :: Database
Topic :: Software Development :: Libraries :: Python Modules
Operating System :: Microsoft :: Windows
Expand Down Expand Up @@ -101,9 +105,7 @@ def read_file(*path):
("\n".join(doclines[2:]) + "\n\n" +
".. contents::\n\n" +
read_file("README.rst").decode('latin-1') + "\n\n" +
read_file("CHANGES.rst").decode('latin-1')
).replace(u'L\xf6wis', '|Lowis|')
)+ '''\n\n.. |Lowis| unicode:: L \\xf6 wis\n'''
read_file("CHANGES.rst").decode('latin-1')))

tests_require = ['zope.testing', 'manuel']

Expand Down

0 comments on commit 122861a

Please sign in to comment.