Skip to content

Commit 0376e79

Browse files
committed
Release version 2.4.0
1 parent 7b0335a commit 0376e79

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -49,3 +49,12 @@ All notable changes to this project will be documented in this file.
4949
- Fixed DK LOL settings
5050
- Fixed FantasyDraft Golf settings
5151
- Fixed DK captain mode settings
52+
53+
## [v2.4.0]
54+
- Added DK MLB captain mode
55+
- Added teams stacking
56+
- Added constraint for restricting players from opposing teams
57+
- Fixed bug with duplicated positions in DK MLB late-swap
58+
- Fixed default timezone for DK late-swap
59+
- Improved performance for solver setup
60+
- Added ability to change solver in PuLP

README.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
pydfs-lineup-optimizer is a tool for creating optimal lineups for daily fantasy sport.
33

44
## Installation
5-
To install pydfs-lineup-optimizer, simply:
5+
To install pydfs-lineup-optimizer, simply run:
66
```
77
$ pip install pydfs-lineup-optimizer
88
```
@@ -35,7 +35,6 @@ from pydfs_lineup_optimizer import Site, Sport, get_optimizer
3535

3636
optimizer = get_optimizer(Site.YAHOO, Sport.BASKETBALL)
3737
optimizer.load_players_from_csv("yahoo-NBA.csv")
38-
lineup_generator = optimizer.optimize(10)
39-
for lineup in lineup_generator:
38+
for lineup in optimizer.optimize(10):
4039
print(lineup)
4140
```

pydfs_lineup_optimizer/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '2.3.0'
1+
__version__ = '2.4.0'

0 commit comments

Comments
 (0)