Skip to content

Commit

Permalink
remove is compressed check
Browse files Browse the repository at this point in the history
  • Loading branch information
jkanche committed Dec 13, 2024
1 parent a8abb52 commit 86630b0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/pybiocfilecache/migrations/migration.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ def _detect_version_from_structure(self) -> str:
column_names = {col[1] for col in columns}

# Check for columns that indicate version
if "is_compressed" in column_names:
return "0.5.0"
elif "tags" in column_names and "size_bytes" in column_names:
# if "is_compressed" in column_names:
# return "0.5.0"
if "tags" in column_names and "size_bytes" in column_names:
return "0.5.0"
else:
return "0.4.1"
Expand Down

0 comments on commit 86630b0

Please sign in to comment.