# HG changeset patch # User Goffi # Date 1511115715 -3600 # Node ID 1bbc29aad56a592995f00eac4653622e50e416a8 # Parent 7fdd24014aa42724c7d58ceef9aaa0748ae03a80 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. diff -r 7fdd24014aa4 -r 1bbc29aad56a setup.py --- 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}, )