We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Both Project and Anonymizer data files in pickle format contain pathlib.Path instances which results in PosixPath on MacOS and WindowsPath on Windows
This means a file created on Windows will not open on MacOS or Linux and visa versa.
Solution is to ensure pathlib.Path objects are not serialized to the model pickle files but instead simple strings are.
This change will need to be made on a major version change because it will break backward model file compability.
The text was updated successfully, but these errors were encountered:
mdevans
No branches or pull requests
Both Project and Anonymizer data files in pickle format contain pathlib.Path instances which results in PosixPath on MacOS and WindowsPath on Windows
This means a file created on Windows will not open on MacOS or Linux and visa versa.
Solution is to ensure pathlib.Path objects are not serialized to the model pickle files but instead simple strings are.
This change will need to be made on a major version change because it will break backward model file compability.
The text was updated successfully, but these errors were encountered: