Skip to content

Commit

Permalink
Update Stable to 10.19.02
Browse files Browse the repository at this point in the history
  • Loading branch information
cjdsellers authored Dec 15, 2023
2 parents 6049e2f + 8aa08e3 commit a82f0aa
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion ibapi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
VERSION = {
'major': 10,
'minor': 19,
'micro': 1}
'micro': 2}


def get_version_string():
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
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"
Expand Down
20 changes: 10 additions & 10 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
)

0 comments on commit a82f0aa

Please sign in to comment.