-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ft: separated Model class into subclasses TimeIndependent and TimeDep…
…endent, with corresponding methods related to their execution nature. tests: adapted test to new Model subclasses sty: formatted code to black -l 96, flake8 and pydocstring ft: created a ModelFactory class, which should handle the type of model instantiation. refac: changed TimeIndependentModel arg use_db to store_db rep: removed obsolete files build: homogenized dev requirements in setup.cfg and requirements_dev (used for tox) examples: removed requirement version of case_f/pymock dep: added new developer dependencies or linting/testing
- Loading branch information
Showing
23 changed files
with
2,075 additions
and
8,267 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
- ALM: | ||
path: models/gulia-wiemer.ALM.italy.10yr.2010-01-01.xml | ||
forecast_unit: 10 | ||
use_db: True | ||
store_db: True | ||
- MPS04: | ||
path: models/meletti.MPS04.italy.10yr.2010-01-01.xml | ||
forecast_unit: 10 | ||
use_db: True | ||
store_db: True | ||
- TripleS-CPTI: | ||
path: models/zechar.TripleS-CPTI.italy.10yr.2010-01-01.xml | ||
forecast_unit: 10 | ||
use_db: True | ||
store_db: True |
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 |
---|---|---|
|
@@ -7,4 +7,4 @@ | |
from floatcsep import model | ||
from floatcsep import readers | ||
|
||
__version__ = '0.1.3' | ||
__version__ = "0.1.4" |
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.