File: req_versions.py

package info (click to toggle)
pytables 3.10.2-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 15,228 kB
  • sloc: ansic: 82,212; python: 65,296; cpp: 753; sh: 394; makefile: 100
file content (16 lines) | stat: -rw-r--r-- 630 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
"""Required versions for PyTables dependencies."""

from packaging.version import Version

# **********************************************************************
#   Runtime requirements, keep versions in sync with
#   "Prerequisites" in the User's Guide.
# **********************************************************************

# Minimum recommended versions for mandatory packages
min_numpy_version = Version("1.20.0")
min_numexpr_version = Version("2.6.2")
# These are library versions, not the python modules
min_hdf5_version = Version("1.10.5")
min_blosc_version = Version("1.11.1")
min_blosc2_version = Version("2.11.0")