h2oai / db-benchmark

reproducible benchmark of database-like ops
https://h2oai.github.io/db-benchmark
Mozilla Public License 2.0
325 stars 88 forks source link

upgrade underlying platforms #168

Closed jangorecki closed 3 years ago

jangorecki commented 3 years ago
st-pasha commented 3 years ago

Many python libraries are dropping support for python 3.5, which lacked 2 important features compared to python 3.6: predictable dictionaries and f-strings. At the same time, python 3.7, 3.8 and 3.9 did not any critically important features, so there is no urgent desire to move away from 3.6. In fact, I know of at least one library (sphinx) that performs noticeably better under 3.6 than under 3.8. So I would say there is no much point in moving away from 3.6 at this point.

jangorecki commented 3 years ago

Thank you