Skip to content

Commit a82f0aa

Browse files
authored
Update Stable to 10.19.02
2 parents 6049e2f + 8aa08e3 commit a82f0aa

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

Diff for: ibapi/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
VERSION = {
99
'major': 10,
1010
'minor': 19,
11-
'micro': 1}
11+
'micro': 2}
1212

1313

1414
def get_version_string():

Diff for: pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "nautilus_ibapi"
3-
version = "10.19.01"
3+
version = "10.19.02"
44
description="Python IB API"
55
authors = ["IBG LLC <[email protected]>"]
66
readme = "README.md"

Diff for: setup.py

+10-10
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,22 @@
22
Copyright (C) 2019 Interactive Brokers LLC. All rights reserved. This code is subject to the terms
33
and conditions of the IB API Non-Commercial License or the IB API Commercial License, as applicable.
44
"""
5-
# from distutils.core import setup
5+
#from distutils.core import setup
66
from setuptools import setup
77
from ibapi import get_version_string
88

99
import sys
1010

11-
if sys.version_info < (3, 1):
12-
sys.exit("Only Python 3.1 and greater is supported")
11+
if sys.version_info < (3,1):
12+
sys.exit("Only Python 3.1 and greater is supported")
1313

1414
setup(
15-
name="ibapi",
15+
name='ibapi',
1616
version=get_version_string(),
17-
packages=["ibapi"],
18-
url="https://interactivebrokers.github.io/tws-api",
19-
license="IB API Non-Commercial License or the IB API Commercial License",
20-
author="IBG LLC",
21-
author_email="[email protected]",
22-
description="Python IB API",
17+
packages=['ibapi'],
18+
url='https://interactivebrokers.github.io/tws-api',
19+
license='IB API Non-Commercial License or the IB API Commercial License',
20+
author='IBG LLC',
21+
author_email='[email protected]',
22+
description='Python IB API'
2323
)

0 commit comments

Comments
 (0)