File tree Expand file tree Collapse file tree 2 files changed +3
-10
lines changed Expand file tree Collapse file tree 2 files changed +3
-10
lines changed Original file line number Diff line number Diff line change 1
- # TODO switch back to elastic-transport>=8,<9 between elastic-transport release and elasticsearch-py release
2
- elastic-transport @ git+https://github.com/elastic/elastic-transport-python
1
+ elastic-transport>=8.13, <9
3
2
requests>=2, <3
4
3
aiohttp
5
4
pytest
Original file line number Diff line number Diff line change 51
51
if package == package_name or package .startswith (package_name + "." )
52
52
]
53
53
54
- # TODO switch back to elastic-transport>=8,<9 between elastic-transport release and elasticsearch-py release
55
- install_requires = [
56
- "elastic-transport @ git+https://github.com/elastic/elastic-transport-python"
57
- ]
58
- async_requires = ["aiohttp>=3,<4" ]
59
-
60
54
setup (
61
55
name = package_name ,
62
56
description = "Python client for Elasticsearch" ,
93
87
"Programming Language :: Python :: Implementation :: PyPy" ,
94
88
],
95
89
python_requires = ">=3.7" ,
96
- install_requires = install_requires ,
90
+ install_requires = [ "elastic-transport>=8.13,<9" ] ,
97
91
extras_require = {
98
92
"requests" : ["requests>=2.4.0, <3.0.0" ],
99
- "async" : async_requires ,
93
+ "async" : [ "aiohttp>=3,<4" ] ,
100
94
"orjson" : ["orjson>=3" ],
101
95
},
102
96
)
You can’t perform that action at this time.
0 commit comments