-
Notifications
You must be signed in to change notification settings - Fork 5
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
3 changed files
with
12 additions
and
12 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 |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
VERSION = { | ||
'major': 10, | ||
'minor': 19, | ||
'micro': 1} | ||
'micro': 2} | ||
|
||
|
||
def get_version_string(): | ||
|
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,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "nautilus_ibapi" | ||
version = "10.19.01" | ||
version = "10.19.02" | ||
description="Python IB API" | ||
authors = ["IBG LLC <[email protected]>"] | ||
readme = "README.md" | ||
|
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 |
---|---|---|
|
@@ -2,22 +2,22 @@ | |
Copyright (C) 2019 Interactive Brokers LLC. All rights reserved. This code is subject to the terms | ||
and conditions of the IB API Non-Commercial License or the IB API Commercial License, as applicable. | ||
""" | ||
# from distutils.core import setup | ||
#from distutils.core import setup | ||
from setuptools import setup | ||
from ibapi import get_version_string | ||
|
||
import sys | ||
|
||
if sys.version_info < (3, 1): | ||
sys.exit("Only Python 3.1 and greater is supported") | ||
if sys.version_info < (3,1): | ||
sys.exit("Only Python 3.1 and greater is supported") | ||
|
||
setup( | ||
name="ibapi", | ||
name='ibapi', | ||
version=get_version_string(), | ||
packages=["ibapi"], | ||
url="https://interactivebrokers.github.io/tws-api", | ||
license="IB API Non-Commercial License or the IB API Commercial License", | ||
author="IBG LLC", | ||
author_email="[email protected]", | ||
description="Python IB API", | ||
packages=['ibapi'], | ||
url='https://interactivebrokers.github.io/tws-api', | ||
license='IB API Non-Commercial License or the IB API Commercial License', | ||
author='IBG LLC', | ||
author_email='[email protected]', | ||
description='Python IB API' | ||
) |