invenia / JLSO.jl

Julia Serialized Object (JLSO) file format for storing checkpoint data.
MIT License
90 stars 5 forks source link

Adds check for version number when running bson manifest tests #122

Closed BaileyBox closed 2 years ago

BaileyBox commented 2 years ago

These tests were failing, as the formatting for the manifest changes between julia version 1.6 and 1.7.

For versions before 1.7, we can just check if the JLSO manifest has the BSON key in it.

For versions equal to 1.7, we have to check the deps field within the manifest for the BSON key.

These changes will fix this issue: #118