Bumping major version of voxel file rather than minor.

This commit is contained in:
Patrick Shriwise 2019-02-28 09:05:47 -06:00
parent a3b93a0e8f
commit 04526b0f07
2 changed files with 2 additions and 2 deletions

View file

@ -33,7 +33,7 @@ constexpr std::array<int, 2> VERSION_PARTICLE_RESTART {2, 0};
constexpr std::array<int, 2> VERSION_TRACK {2, 0};
constexpr std::array<int, 2> VERSION_SUMMARY {6, 0};
constexpr std::array<int, 2> VERSION_VOLUME {1, 0};
constexpr std::array<int, 2> VERSION_VOXEL {1, 1};
constexpr std::array<int, 2> VERSION_VOXEL {2, 0};
constexpr std::array<int, 2> VERSION_MGXS_LIBRARY {1, 0};
constexpr char VERSION_MULTIPOLE[] {"v0.2"};

View file

@ -8,7 +8,7 @@ import numpy as np
import h5py
import vtk
_min_version = (1,1)
_min_version = (2,0)
def main():