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
32requests>=2, <3
43aiohttp
54pytest
Original file line number Diff line number Diff line change 5151 if package == package_name or package .startswith (package_name + "." )
5252]
5353
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-
6054setup (
6155 name = package_name ,
6256 description = "Python client for Elasticsearch" ,
9387 "Programming Language :: Python :: Implementation :: PyPy" ,
9488 ],
9589 python_requires = ">=3.7" ,
96- install_requires = install_requires ,
90+ install_requires = [ "elastic-transport>=8.13,<9" ] ,
9791 extras_require = {
9892 "requests" : ["requests>=2.4.0, <3.0.0" ],
99- "async" : async_requires ,
93+ "async" : [ "aiohttp>=3,<4" ] ,
10094 "orjson" : ["orjson>=3" ],
10195 },
10296)
You can’t perform that action at this time.
0 commit comments