Skip to content
Snippets Groups Projects
Commit 76486539 authored by Holger's avatar Holger
Browse files

Prepare next release

parent e6a8e80c
No related branches found
No related tags found
No related merge requests found
...@@ -158,7 +158,7 @@ Changelog ...@@ -158,7 +158,7 @@ Changelog
========= =========
0.19.40 0.19.40
------- -------
* Improvement of blocks/stream with threading * Improvement of blocks/stream with threading (issue #32 fixed)
* Remove 5 tag limit * Remove 5 tag limit
* Empty answer fixed for discussions * Empty answer fixed for discussions
* Add fallback to condenser api for appbase nodes * Add fallback to condenser api for appbase nodes
......
"""THIS FILE IS GENERATED FROM beem SETUP.PY.""" """THIS FILE IS GENERATED FROM beem SETUP.PY."""
version = '0.19.40' version = '0.19.41'
"""THIS FILE IS GENERATED FROM beem SETUP.PY.""" """THIS FILE IS GENERATED FROM beem SETUP.PY."""
version = '0.19.40' version = '0.19.41'
"""THIS FILE IS GENERATED FROM beem SETUP.PY.""" """THIS FILE IS GENERATED FROM beem SETUP.PY."""
version = '0.19.40' version = '0.19.41'
"""THIS FILE IS GENERATED FROM beem SETUP.PY.""" """THIS FILE IS GENERATED FROM beem SETUP.PY."""
version = '0.19.40' version = '0.19.41'
...@@ -38,8 +38,8 @@ if __name__ == "__main__": ...@@ -38,8 +38,8 @@ if __name__ == "__main__":
timeout = 10 timeout = 10
nodes = NodeList() nodes = NodeList()
nodes.update_nodes(weights={"block": 1}) nodes.update_nodes(weights={"block": 1})
node_list_wss = nodes.get_nodes(wss=False)[:5] node_list_wss = nodes.get_nodes(https=False)[:5]
node_list_https = nodes.get_nodes(https=False)[:5] node_list_https = nodes.get_nodes(wss=False)[:5]
vote_result = [] vote_result = []
duration = [] duration = []
......
...@@ -16,7 +16,7 @@ except LookupError: ...@@ -16,7 +16,7 @@ except LookupError:
ascii = codecs.lookup('ascii') ascii = codecs.lookup('ascii')
codecs.register(lambda name, enc=ascii: {True: enc}.get(name == 'mbcs')) codecs.register(lambda name, enc=ascii: {True: enc}.get(name == 'mbcs'))
VERSION = '0.19.40' VERSION = '0.19.41'
tests_require = ['mock >= 2.0.0', 'pytest', 'pytest-mock', 'parameterized'] tests_require = ['mock >= 2.0.0', 'pytest', 'pytest-mock', 'parameterized']
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment