Compare commits

...

3 Commits
v9.0.1 ... main

Author SHA1 Message Date
Jan Calanog
cef4710695
docs-builder: add pull-requests: write permission to docs-build workflow (#800) 2025-06-23 15:39:36 +04:00
Quentin Pradet
44ead02b05
Fix lint (#798) 2025-06-05 15:52:19 +04:00
Miguel Grinberg
cb7c4fb122
Update README.md (#796)
Update Pandas support to include v2
2025-05-16 15:56:20 +01:00
3 changed files with 4 additions and 6 deletions

View File

@ -16,4 +16,4 @@ jobs:
deployments: write
id-token: write
contents: read
pull-requests: read
pull-requests: write

View File

@ -53,7 +53,8 @@ $ conda install -c conda-forge eland
### Compatibility
- Supports Python 3.9, 3.10, 3.11, 3.12 and Pandas 1.5
- Supports Python 3.9, 3.10, 3.11 and 3.12.
- Supports Pandas 1.5 and 2.
- Supports Elasticsearch 8+ clusters, recommended 8.16 or later for all features to work.
If you are using the NLP with PyTorch feature make sure your Eland minor version matches the minor
version of your Elasticsearch cluster. For all other features it is sufficient for the major versions

View File

@ -50,10 +50,7 @@ class Index:
# index_field.setter
self._is_source_field = False
# The type:ignore is due to mypy not being smart enough
# to recognize the property.setter has a different type
# than the property.getter.
self.es_index_field = es_index_field # type: ignore
self.es_index_field = es_index_field
@property
def sort_field(self) -> str: