forked from gbeced/pyalgotrade
-
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.
- Loading branch information
Showing
10 changed files
with
19 additions
and
21 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
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
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 |
---|---|---|
@@ -1,9 +1,9 @@ | ||
#!/bin/bash | ||
|
||
docker build -t pyalgotrade:0.17 . | ||
docker build -t pyalgotrade:0.18 . | ||
# docker rmi $(docker images --quiet --filter "dangling=true") | ||
|
||
# docker tag pyalgotrade:0.17 gbecedillas/pyalgotrade:0.17 | ||
# docker tag pyalgotrade:0.18 gbecedillas/pyalgotrade:0.18 | ||
# docker login --username=gbecedillas [email protected] | ||
# docker push gbecedillas/pyalgotrade:0.17 | ||
# docker push gbecedillas/pyalgotrade:0.18 | ||
|
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 |
---|---|---|
|
@@ -18,4 +18,4 @@ | |
.. moduleauthor:: Gabriel Martin Becedillas Ruiz <[email protected]> | ||
""" | ||
|
||
__version__ = "0.17" | ||
__version__ = "0.18" |
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 |
---|---|---|
|
@@ -24,13 +24,13 @@ | |
|
||
setup( | ||
name='PyAlgoTrade', | ||
version='0.17', | ||
version='0.18', | ||
description='Python Algorithmic Trading', | ||
long_description='Python library for backtesting stock trading strategies.', | ||
author='Gabriel Martin Becedillas Ruiz', | ||
author_email='[email protected]', | ||
url='http://gbeced.github.io/pyalgotrade/', | ||
download_url='http://sourceforge.net/projects/pyalgotrade/files/0.17/PyAlgoTrade-0.17.tar.gz/download', | ||
download_url='http://sourceforge.net/projects/pyalgotrade/files/0.18/PyAlgoTrade-0.18.tar.gz/download', | ||
packages=[ | ||
'pyalgotrade', | ||
'pyalgotrade.barfeed', | ||
|
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM gbecedillas/pyalgotrade:0.17 | ||
FROM gbecedillas/pyalgotrade:0.18 | ||
MAINTAINER Gabriel Martin Becedillas Ruiz <[email protected]> | ||
|
||
RUN pip install nose | ||
|