-
Notifications
You must be signed in to change notification settings - Fork 431
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #452 from timkpaine/tkp/110
bump version to 1.1.0, bump ffn min version to 1.1.0
- Loading branch information
Showing
2 changed files
with
4 additions
and
4 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 |
---|---|---|
|
@@ -10,4 +10,4 @@ | |
import ffn | ||
from ffn import utils, data, get, merge | ||
|
||
__version__ = "1.0.1" | ||
__version__ = "1.1.0" |
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 |
---|---|---|
|
@@ -25,18 +25,18 @@ def local_file(filename): | |
|
||
setup( | ||
name="bt", | ||
version="1.0.1", | ||
version="1.1.0", | ||
author="Philippe Morissette", | ||
author_email="[email protected]", | ||
description="A flexible backtesting framework for Python", | ||
keywords="python finance quant backtesting strategies algotrading algorithmic trading", | ||
url="https://github.com/pmorissette/bt", | ||
license="MIT", | ||
install_requires=["ffn>=1.0.0", "pyprind>=2.11", "tqdm>=4"], | ||
install_requires=["ffn>=1.1.0", "pyprind>=2.11", "tqdm>=4"], | ||
extras_require={ | ||
"dev": [ | ||
"cython>=0.29.25", | ||
"ffn>=1.0.0", | ||
"ffn>=1.1.0", | ||
"matplotlib>=2", | ||
"numpy>=1", | ||
"pandas>=0.19", | ||
|