Blob Blame History Raw
From 6dad0d61386d69833ca73098b533faa6b01a31b5 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= <zbyszek@in.waw.pl>
Date: Sun, 14 May 2023 18:54:14 +0200
Subject: [PATCH] Relax dependency on blosc2

As specified before, it translates to "blosc2 >= 2" + "blosc2 < 2.1",
which is obviously not satisfied by current blosc2 = 2.2.2.
---
 pyproject.toml   | 2 +-
 requirements.txt | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/pyproject.toml b/pyproject.toml
index 022614ad25..eb16091a6c 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -6,6 +6,6 @@ requires = [
     "packaging",
     "py-cpuinfo",
     "Cython >=0.29.21",
-    "blosc2 ~=2.0.0"
+    "blosc2 >=2.0.0"
 ]
 build-backend = "setuptools.build_meta"
diff --git a/requirements.txt b/requirements.txt
index 8d2f5d2456..99e7db38dc 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -6,6 +6,6 @@ numpy>=1.19.0
 numexpr>=2.6.2
 # blosc2 wheel is actually only needed when compiling on conda envs.
 # Otherwise, lib comes bundled in PyTables wheels (but it doesn't hurt either).
-blosc2~=2.0.0
+blosc2>=2.0.0
 packaging
 py-cpuinfo
-- 
2.40.1