changeset 987:1bbc29aad56a

server (install): force version of txJSON-RPC to 0.3.1: later version are bugged (unicode is badly handled). We only use if for Libervia legacy (i.e. Pyjamas version), and we'll get rid of it for SàT 0.8, so it's not a big deal to use an older version. In addition, txJSON-RPC doesn't seem maintained anymore.
author Goffi <goffi@goffi.org>
date Sun, 19 Nov 2017 19:21:55 +0100
parents 7fdd24014aa4
children d042f194624a
files setup.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/setup.py	Sun Nov 19 17:18:33 2017 +0100
+++ b/setup.py	Sun Nov 19 19:21:55 2017 +0100
@@ -302,6 +302,6 @@
                   for root, dirs, files in os.walk(C.THEMES_DIR)],
       scripts=[],
       zip_safe=False,
-      install_requires=['sat', 'twisted', 'txJSON-RPC<5', 'zope.interface', 'pyopenssl', 'jinja2', 'shortuuid'],
+      install_requires=['sat', 'twisted', 'txJSON-RPC==0.3.1', 'zope.interface', 'pyopenssl', 'jinja2', 'shortuuid'],
       cmdclass={'install': CustomInstall},
       )