Skip to content

Commit

Permalink
Merge branch 'release-3.0.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
DimaKudosh committed Feb 16, 2020
2 parents f82e413 + 10e6ac2 commit 9bf1807
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,9 @@

All notable changes to this project will be documented in this file.

## [v3.0.1]
- Fixed paring teams in DK

## [v3.0.0]
- Added new stacking api
- Fixed min exposure
Expand Down
Expand Up @@ -28,7 +28,7 @@ def _parse_game_info(self, row: Dict) -> Optional[GameInfo]:
game_started=True)
try:
teams, date, time, tz = game_info.rsplit(' ', 3)
away_team, home_team = teams.upper().split('@')
away_team, home_team = teams.split('@')
starts_at = datetime.strptime(date + time, '%m/%d/%Y%I:%M%p').\
replace(tzinfo=timezone(get_timezone()))
return GameInfo(
Expand Down
2 changes: 1 addition & 1 deletion pydfs_lineup_optimizer/version.py
@@ -1 +1 @@
__version__ = '3.0.0'
__version__ = '3.0.1'

0 comments on commit 9bf1807

Please sign in to comment.