We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8abb52 commit 86630b0Copy full SHA for 86630b0
src/pybiocfilecache/migrations/migration.py
@@ -50,9 +50,9 @@ def _detect_version_from_structure(self) -> str:
50
column_names = {col[1] for col in columns}
51
52
# 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:
+ # if "is_compressed" in column_names:
+ # return "0.5.0"
+ if "tags" in column_names and "size_bytes" in column_names:
56
return "0.5.0"
57
else:
58
return "0.4.1"
0 commit comments