diff --git a/ibapi/__init__.py b/ibapi/__init__.py index e3842a6..fad7fe0 100644 --- a/ibapi/__init__.py +++ b/ibapi/__init__.py @@ -8,7 +8,7 @@ VERSION = { 'major': 10, 'minor': 19, - 'micro': 1} + 'micro': 2} def get_version_string(): diff --git a/pyproject.toml b/pyproject.toml index 110e590..69a630c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "nautilus_ibapi" -version = "10.19.01" +version = "10.19.02" description="Python IB API" authors = ["IBG LLC "] readme = "README.md" diff --git a/setup.py b/setup.py index 81c8c03..b8cce15 100644 --- a/setup.py +++ b/setup.py @@ -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="dnastase@interactivebrokers.com", - 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='dnastase@interactivebrokers.com', + description='Python IB API' )