gitpython-developers / gitdb

IO of git-style object databases
http://gitdb.readthedocs.org
Other
218 stars 65 forks source link

Use ZLIB_RUNTIME_VERSION if available #84

Closed otethal closed 1 year ago

otethal commented 1 year ago

The zlib version check introduced in #19 uses zlib.ZLIB_VERSION, which is not necessarily the actual version used at runtime. This PR attempts to use zlib.ZLIB_RUNTIME_VERSION instead (introduced in Python 3.3).

Byron commented 1 year ago

Thanks a lot, much appreciated.