Skip to content

[Backport 8.13] Switch back to released version of elastic-transport #2506

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions dev-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# TODO switch back to elastic-transport>=8,<9 between elastic-transport release and elasticsearch-py release
elastic-transport @ git+https://github.com/elastic/elastic-transport-python
elastic-transport>=8.13, <9
requests>=2, <3
aiohttp
pytest
Expand Down
10 changes: 2 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,6 @@
if package == package_name or package.startswith(package_name + ".")
]

# TODO switch back to elastic-transport>=8,<9 between elastic-transport release and elasticsearch-py release
install_requires = [
"elastic-transport @ git+https://github.com/elastic/elastic-transport-python"
]
async_requires = ["aiohttp>=3,<4"]

setup(
name=package_name,
description="Python client for Elasticsearch",
Expand Down Expand Up @@ -93,10 +87,10 @@
"Programming Language :: Python :: Implementation :: PyPy",
],
python_requires=">=3.7",
install_requires=install_requires,
install_requires=["elastic-transport>=8.13,<9"],
extras_require={
"requests": ["requests>=2.4.0, <3.0.0"],
"async": async_requires,
"async": ["aiohttp>=3,<4"],
"orjson": ["orjson>=3"],
},
)