made changes described in Issue#32

changed setup.py to also reflect versioning changes

Signed-off-by: Arthur Lu <learthurgo@gmail.com>
This commit is contained in:
Arthur Lu 2020-07-30 19:05:07 +00:00
parent 231a1a4a72
commit 93e762c2dd

View File

@ -3,17 +3,17 @@
# Notes: # Notes:
# setup: # setup:
__version__ = "0.0.6.002" __version__ = "0.6.2"
# changelog should be viewed using print(analysis.__changelog__) # changelog should be viewed using print(analysis.__changelog__)
__changelog__ = """changelog: __changelog__ = """changelog:
0.0.6.002: 0.6.2:
- integrated get_team_rankings.py as get_team_metrics() function - integrated get_team_rankings.py as get_team_metrics() function
- integrated visualize_pit.py as graph_pit_histogram() function - integrated visualize_pit.py as graph_pit_histogram() function
0.0.6.001: 0.6.1:
- bug fixes with analysis.Metric() calls - bug fixes with analysis.Metric() calls
- modified metric functions to use config.json defined default values - modified metric functions to use config.json defined default values
0.0.6.000: 0.6.0:
- removed main function - removed main function
- changed load_config function - changed load_config function
- added save_config function - added save_config function
@ -24,66 +24,66 @@ __changelog__ = """changelog:
- renamed metricsloop to metricloop - renamed metricsloop to metricloop
- split push to database functions amon push_match, push_metric, push_pit - split push to database functions amon push_match, push_metric, push_pit
- moved - moved
0.0.5.002: 0.5.2:
- made changes due to refactoring of analysis - made changes due to refactoring of analysis
0.0.5.001: 0.5.1:
- text fixes - text fixes
- removed matplotlib requirement - removed matplotlib requirement
0.0.5.000: 0.5.0:
- improved user interface - improved user interface
0.0.4.002: 0.4.2:
- removed unessasary code - removed unessasary code
0.0.4.001: 0.4.1:
- fixed bug where X range for regression was determined before sanitization - fixed bug where X range for regression was determined before sanitization
- better sanitized data - better sanitized data
0.0.4.000: 0.4.0:
- fixed spelling issue in __changelog__ - fixed spelling issue in __changelog__
- addressed nan bug in regression - addressed nan bug in regression
- fixed errors on line 335 with metrics calling incorrect key "glicko2" - fixed errors on line 335 with metrics calling incorrect key "glicko2"
- fixed errors in metrics computing - fixed errors in metrics computing
0.0.3.000: 0.3.0:
- added analysis to pit data - added analysis to pit data
0.0.2.001: 0.2.1:
- minor stability patches - minor stability patches
- implemented db syncing for timestamps - implemented db syncing for timestamps
- fixed bugs - fixed bugs
0.0.2.000: 0.2.0:
- finalized testing and small fixes - finalized testing and small fixes
0.0.1.004: 0.1.4:
- finished metrics implement, trueskill is bugged - finished metrics implement, trueskill is bugged
0.0.1.003: 0.1.3:
- working - working
0.0.1.002: 0.1.2:
- started implement of metrics - started implement of metrics
0.0.1.001: 0.1.1:
- cleaned up imports - cleaned up imports
0.0.1.000: 0.1.0:
- tested working, can push to database - tested working, can push to database
0.0.0.009: 0.0.9:
- tested working - tested working
- prints out stats for the time being, will push to database later - prints out stats for the time being, will push to database later
0.0.0.008: 0.0.8:
- added data import - added data import
- removed tba import - removed tba import
- finished main method - finished main method
0.0.0.007: 0.0.7:
- added load_config - added load_config
- optimized simpleloop for readibility - optimized simpleloop for readibility
- added __all__ entries - added __all__ entries
- added simplestats engine - added simplestats engine
- pending testing - pending testing
0.0.0.006: 0.0.6:
- fixes - fixes
0.0.0.005: 0.0.5:
- imported pickle - imported pickle
- created custom database object - created custom database object
0.0.0.004: 0.0.4:
- fixed simpleloop to actually return a vector - fixed simpleloop to actually return a vector
0.0.0.003: 0.0.3:
- added metricsloop which is unfinished - added metricsloop which is unfinished
0.0.0.002: 0.0.2:
- added simpleloop which is untested until data is provided - added simpleloop which is untested until data is provided
0.0.0.001: 0.0.1:
- created script - created script
- added analysis, numba, numpy imports - added analysis, numba, numpy imports
""" """