Github user jingyimei commented on the issue:
https://github.com/apache/madlib/pull/182
I tested it against postgres10beta4 on a local centos6 docker container,
and I got the following error when installing MADlib:
[postgres@31e9a35af8a7 build]$ src/bin/madpack -p postgres -c
postgres/postgres@localhost:5432/test install
Traceback (most recent call last):
File "/build/src/bin/../madpack/madpack.py", line 1580, in <module>
main(sys.argv[1:])
File "/build/src/bin/../madpack/madpack.py", line 1169, in main
for versionStr in supportedVersions])))
ValueError: max() arg is an empty sequence
Here is the postgres version info:
test=# select version();
version
------------------------------------------------------------------------------------------------------------
PostgreSQL 10beta4 on x86_64-pc-linux-gnu, compiled by gcc (GCC) 4.4.7
20120313 (Red Hat 4.4.7-18), 64-bit
(1 row)
Still looking into the root cause of it.
---