Skip to content

Commit dc1ad2b

Browse files
hkopptwiecki
hkopp
authored andcommitted
Fix #368 and smaller stuff (#369)
* removed trailing whitespace * PEP8 policing * fixes #368
1 parent 4288815 commit dc1ad2b

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

Diff for: WHATSNEW.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ This is a major new release from `0.5.1`. All users are recommended to upgrade.
2828

2929
### New features
3030

31-
* Computation of performance and risk measures has been split off into [`empyrical`](https://github.com/quantopian/empyrical). This allows [`Zipline`](https://zipline.io) and `pyfolio` to use the same code to calculate its risk statistics. By [Ana Ruelas](https://github.com/ahgnaw) and [Abhi Kalyan](https://github.com/abhijeetkalyan).
31+
* Computation of performance and risk measures has been split off into [`empyrical`](https://github.com/quantopian/empyrical). This allows [`Zipline`](https://zipline.io) and `pyfolio` to use the same code to calculate its risk statistics. By [Ana Ruelas](https://github.com/ahgnaw) and [Abhi Kalyan](https://github.com/abhijeetkalyan).
3232
* New multistrike cone which redraws the cone when it crossed its initial bounds [PR310](https://github.com/quantopian/pyfolio/pull/310). By [Ana Ruelas](https://github.com/ahgnaw) and [Abhi Kalyan](https://github.com/abhijeetkalyan).
3333

3434
### Bugfixes

Diff for: setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
'ipython>=3.2.3',
4343
'matplotlib>=1.4.0',
4444
'numpy>=1.9.1',
45-
'pandas>=0.18.0',
45+
'pandas>=0.19.0',
4646
'pytz>=2014.10',
4747
'scipy>=0.14.0',
4848
'seaborn>=0.7.1',

Diff for: versioneer.py

+3
Original file line numberDiff line numberDiff line change
@@ -419,6 +419,7 @@ def get(parser, name):
419419
class NotThisMethod(Exception):
420420
pass
421421

422+
422423
# these dictionaries contain VCS-specific tools
423424
LONG_VERSION_PY = {}
424425
HANDLERS = {}
@@ -1124,6 +1125,7 @@ def versions_from_parentdir(parentdir_prefix, root, verbose):
11241125
"full-revisionid": None,
11251126
"dirty": False, "error": None}
11261127

1128+
11271129
SHORT_VERSION_PY = """
11281130
# This file was generated by 'versioneer.py' (0.15) from
11291131
# revision-control system data, or from the parent directory name of an
@@ -1690,6 +1692,7 @@ def scan_setup_py():
16901692
errors += 1
16911693
return errors
16921694

1695+
16931696
if __name__ == "__main__":
16941697
cmd = sys.argv[1]
16951698
if cmd == "setup":

0 commit comments

Comments
 (0)