Skip to content

Commit 86630b0

Browse files
committed
remove is compressed check
1 parent a8abb52 commit 86630b0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/pybiocfilecache/migrations/migration.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@ def _detect_version_from_structure(self) -> str:
5050
column_names = {col[1] for col in columns}
5151

5252
# Check for columns that indicate version
53-
if "is_compressed" in column_names:
54-
return "0.5.0"
55-
elif "tags" in column_names and "size_bytes" in column_names:
53+
# if "is_compressed" in column_names:
54+
# return "0.5.0"
55+
if "tags" in column_names and "size_bytes" in column_names:
5656
return "0.5.0"
5757
else:
5858
return "0.4.1"

0 commit comments

Comments
 (0)