Skip to content

Commit 4ab69e1

Browse files
committed
fix #44
Signed-off-by: ふぁ <yuki@yuki0311.com>
1 parent d75f6b9 commit 4ab69e1

3 files changed

Lines changed: 9 additions & 3 deletions

File tree

twitter_openapi_python/pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "twitter_openapi_python"
3-
version = "0.0.39"
3+
version = "0.0.40"
44
description = "Twitter OpenAPI"
55
authors = ["fa0311 <yuki@yuki0311.com>"]
66
license = "proprietary" # or "AGPL-3.0-only"
@@ -14,6 +14,7 @@ include = ["twitter_openapi_python/py.typed"]
1414
python = "^3.7"
1515
pydantic = ">=2.6"
1616
urllib3 = ">= 2.1.0 < 3.0.0"
17+
xclienttransaction = ">= 1.0.0 < 2.0.0"
1718

1819
twitter-openapi-python-generated = "0.0.33"
1920

34 Bytes
Binary file not shown.

twitter_openapi_python/setup.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,14 @@
55
from setuptools import find_packages, setup
66

77
NAME = "twitter_openapi_python"
8-
VERSION = "0.0.39"
8+
VERSION = "0.0.40"
99
PYTHON_REQUIRES = ">=3.7"
10-
REQUIRES = ["twitter_openapi_python_generated == 0.0.33", "pydantic >= 2.6", "urllib3 >= 2.1.0, < 3.0.0"]
10+
REQUIRES = [
11+
"twitter_openapi_python_generated == 0.0.33",
12+
"pydantic >= 2.6",
13+
"urllib3 >= 2.1.0, < 3.0.0",
14+
"xclienttransaction >= 1.0.0, < 2.0.0"
15+
]
1116
GITHUB_RAW_URL = (
1217
"https://raw.githubusercontent.com/fa0311/twitter_openapi_python/refs/heads/master/twitter_openapi_python/"
1318
)

0 commit comments

Comments
 (0)