File tree Expand file tree Collapse file tree 3 files changed +12
-12
lines changed
Expand file tree Collapse file tree 3 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 88VERSION = {
99 'major' : 10 ,
1010 'minor' : 19 ,
11- 'micro' : 1 }
11+ 'micro' : 2 }
1212
1313
1414def get_version_string ():
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " nautilus_ibapi"
3- version = " 10.19.01 "
3+ version = " 10.19.02 "
44description =" Python IB API"
55authors = [" IBG LLC <dnastase@interactivebrokers.com>" ]
66readme = " README.md"
Original file line number Diff line number Diff line change 22Copyright (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
66from setuptools import setup
77from ibapi import get_version_string
88
99import 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
1414setup (
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 = " dnastase@interactivebrokers.com" ,
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 = ' dnastase@interactivebrokers.com' ,
22+ description = ' Python IB API'
2323)
You can’t perform that action at this time.
0 commit comments