Skip to content

Commit 99463bc

Browse files
committed
BLD Update requirements. Remove version string from setup.py as it's handled by versioneer. Update release notes.
1 parent 487f697 commit 99463bc

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

WHATSNEW.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
These are new features and improvements of note in each release.
44

5-
## v0.9.0 (June 14th, 2018)
5+
## v0.9.0 (Aug 1st, 2018)
66

77
### New features
88

@@ -11,12 +11,16 @@ These are new features and improvements of note in each release.
1111
alternative data sets, `pyfolio` is now completely independent of benchmarks.
1212
If a benchmark is passed, all benchmark-related analyses will be performed;
1313
if not, they will simply be skipped. By [George Ho](https://github.com/eigenfoo)
14+
- Performance attribution tearsheet [PR441](https://github.com/quantopian/pyfolio/pull/441), [PR433](https://github.com/quantopian/pyfolio/pull/433), [PR442](https://github.com/quantopian/pyfolio/pull/442). By [Vikram Narayan](https://github.com/vikram-narayan).
15+
- Improved implementation of `get_turnover` [PR332](https://github.com/quantopian/pyfolio/pull/432). By [Gus Gordon](https://github.com/gusgordon).
16+
- Users can now pass in extra rows (as a dict or OrderedDict) to display in the perf_stats table [PR445](https://github.com/quantopian/pyfolio/pull/445). By [Gus Gordon](https://github.com/gusgordon).
1417

1518
### Maintenance
1619

1720
- Many features have been more extensively troubleshooted, maintained and
1821
tested. By [Ana Ruelas](https://github.com/ahgnaw) and [Vikram
1922
Narayan](https://github.com/vikram-narayan).
23+
- Various fixes to support pandas versions >= 0.18.1 [PR443](https://github.com/quantopian/pyfolio/pull/443). By [Andrew Daniels](https://github.com/yankees714).
2024

2125
## v0.8.0 (Aug 23rd, 2017)
2226

setup.py

+2-4
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
AUTHOR_EMAIL = '[email protected]'
2525
URL = "https://github.com/quantopian/pyfolio"
2626
LICENSE = "Apache License, Version 2.0"
27-
VERSION = "0.8.0"
2827

2928
classifiers = ['Development Status :: 4 - Beta',
3029
'Programming Language :: Python',
@@ -53,12 +52,11 @@
5352
'scipy>=0.14.0',
5453
'scikit-learn>=0.16.1',
5554
'seaborn>=0.7.1',
56-
'pandas-datareader>=0.2',
57-
'empyrical>=0.3.4'
55+
'empyrical>=0.5.0'
5856
]
5957

6058
test_reqs = ['nose>=1.3.7', 'nose-parameterized>=0.5.0', 'runipy>=0.1.3']
61-
bayesian_reqs = ['pymc3 >= 3.1']
59+
bayesian_reqs = ['pymc3 >= 3.5']
6260

6361
extras_reqs = {
6462
'bayesian': bayesian_reqs,

0 commit comments

Comments
 (0)