forked from quantopian/zipline
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
versioneer let's us track the version using git tags. This prevents issues like the 0.8.2->0.8.3 push. This also puts the number of commits from the release and the commit you are on in the version.
- Loading branch information
llllllllll
committed
Nov 11, 2015
1 parent
88a53fb
commit bd0da17
Showing
7 changed files
with
2,186 additions
and
10 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
zipline/_version.py export-subst |
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
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
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 |
---|---|---|
|
@@ -30,6 +30,8 @@ | |
setup, | ||
) | ||
|
||
import versioneer | ||
|
||
|
||
class LazyCythonizingList(list): | ||
cythonized = False | ||
|
@@ -219,7 +221,8 @@ def pre_setup(): | |
|
||
setup( | ||
name='zipline', | ||
version='0.8.3', | ||
version=versioneer.get_version(), | ||
cmdclass=versioneer.get_cmdclass(), | ||
description='A backtester for financial algorithms.', | ||
author='Quantopian Inc.', | ||
author_email='[email protected]', | ||
|
Oops, something went wrong.