# HG changeset patch # User Goffi # Date 1624022876 -7200 # Node ID ac2374c922947a6b59c76ced1ffa1291e30f39a2 # Parent 433c02214e6db4f26d3a1303a80a2b148edca337 remove old pyjamas workaround diff -r 433c02214e6d -r ac2374c92294 libervia/__init__.py --- a/libervia/__init__.py Wed Jun 16 17:18:59 2021 +0000 +++ b/libervia/__init__.py Fri Jun 18 15:27:56 2021 +0200 @@ -1,9 +1,5 @@ import os.path version_file = os.path.join(os.path.dirname(__file__), "VERSION") -try: - with open(version_file) as f: - __version__ = f.read().strip() -except NotImplementedError: - # pyjamas workaround - __version__ = "0.7.0D" +with open(version_file) as f: + __version__ = f.read().strip()