Skip to content

Commit 72abff7

Browse files
committed
Update version
1 parent ee53fbb commit 72abff7

File tree

3 files changed

+19
-19
lines changed

3 files changed

+19
-19
lines changed

Diff for: poetry.lock

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: pyproject.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
[tool.poetry]
22
name = "nautilus_ibapi"
3-
version = "1019.01"
4-
description='Python IB API'
5-
authors = ['IBG LLC <[email protected]>']
3+
version = "10.19.01"
4+
description="Python IB API"
5+
authors = ["IBG LLC <[email protected]>"]
66
readme = "README.md"
7-
repository = 'https://interactivebrokers.github.io/tws-api'
8-
license = 'IB API Non-Commercial License or the IB API Commercial License'
7+
repository = "https://interactivebrokers.github.io/tws-api"
8+
license = "IB API Non-Commercial License or the IB API Commercial License"
99
include = ["ibapi/**/*"]
1010
packages = [{include = "ibapi"}]
1111

1212
[tool.poetry.dependencies]
13-
python = ">=3.9,<3.12"
13+
python = ">=3.9"
1414

1515
[build-system]
1616
requires = ["poetry-core"]

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)