Skip to content

Commit cbc5b67

Browse files
committed
New release: 2.0.0
Everything should still work as fully compatible with the previous major release version line, but we added/modified/refactored a lot of interfaces and defaults, so it's better to just cut a new clean "this is the future" major version number here going forward.
1 parent 9f9b349 commit cbc5b67

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

pyproject.toml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "ib_async"
3-
version = "1.0.3"
3+
version = "2.0.0"
44
description = "Python sync/async framework for Interactive Brokers API"
55
authors = ["Ewald de Wit"]
66
maintainers = ["Matt Stancliff <[email protected]>"]
@@ -9,20 +9,24 @@ readme = "README.md"
99
repository = "https://github.com/ib-api-reloaded/ib_async"
1010
include = ["ib_async/py.typed"]
1111
classifiers = [
12-
"Development Status :: 4 - Beta",
12+
"Development Status :: 5 - Production/Stable",
1313
"Intended Audience :: Developers",
1414
"Topic :: Office/Business :: Financial :: Investment",
1515
"License :: OSI Approved :: BSD License",
1616
"Programming Language :: Python :: 3.10",
1717
"Programming Language :: Python :: 3.11",
1818
"Programming Language :: Python :: 3.12",
19+
"Programming Language :: Python :: 3.13",
1920
"Programming Language :: Python :: 3 :: Only",
2021
]
2122
keywords = ["ibapi", "tws", "asyncio", "jupyter", "interactive", "brokers", "async", "ib_async", "ib_insync"]
2223

2324
[tool.poetry.dependencies]
2425
python = ">=3.10"
25-
eventkit = "*"
26+
# The pypi `eventkit` package is still locked to Ewald's account, so for now it's
27+
# easier to just add a direct github tag dependency for our new version.
28+
eventkit = { git = "https://github.com/ib-api-reloaded/eventkit", tag = "v2.0.0" }
29+
# eventkit = { path = "../eventkit", develop = true }
2630
nest_asyncio = "*"
2731

2832
[tool.poetry.urls]
@@ -37,6 +41,7 @@ mypy = ">=1.11.0"
3741
pytest = ">=8.0"
3842
pytest-asyncio = ">=0.23"
3943
pandas = "^2.2.1"
44+
ruff = "^0.11.13"
4045

4146

4247
[tool.poetry.group.docs]

0 commit comments

Comments
 (0)