-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removing persistence code from the repo (#286)
Removal of obsolete code from Exetera. This is primarily relating to: - early code for processing the dataset as csvs (before the codebase morphed into Exetera) - the readers / writers and old implementation of dataset, that later were refactored into field classes and the session class, respectively. These were documented as being deprecated but left in for compatibility while the scripts that relied on them were modernised. - support code for the above Files that have been removed: - core/csvdataset.py - core/exporter.py - core/filtered_field.py - core/persistence.py - core/readerwriter.py - core/regression.py - core/split.py
- Loading branch information
1 parent
24cc402
commit 8628710
Showing
28 changed files
with
164 additions
and
5,463 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
|
||
from . import data_writer, csvdataset, exporter, fields, filtered_field, operations, \ | ||
persistence, readerwriter, regression, session, split, utils, validation | ||
from . import (data_writer, | ||
fields, | ||
operations, | ||
session, | ||
utils, | ||
validation) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.