···11-commit 37c815ee660d1bf37256638d23b0346ad7cc19e7
22-Author: sternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>
33-Date: Wed Jul 21 00:18:30 2021 +0200
44-55- omp/setup.py: open version_information in text mode
66-77- Otherwise saving the config in setup_support.py will fail as a bytes
88- object is not encodeable as JSON. Luckily, version_information is text
99- anyways.
1010-1111-diff --git a/omp/setup.py b/omp/setup.py
1212-index 942ab1f5..5281398e 100755
1313---- a/omp/setup.py
1414-+++ b/omp/setup.py
1515-@@ -25,7 +25,7 @@ class GNATCollOMP(SetupApp):
1616-1717- # Set library version
1818- with open(os.path.join(config.source_dir, '..',
1919-- 'version_information'), 'rb') as fd:
2020-+ 'version_information'), 'r') as fd:
2121- version = fd.read().strip()
2222- config.set_data('GNATCOLL_VERSION', version, sub='gprbuild')
2323-