Compare commits

..

No commits in common. "main" and "v9.0.1" have entirely different histories.
main ... v9.0.1

3 changed files with 6 additions and 4 deletions

View File

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

View File

@ -53,8 +53,7 @@ $ conda install -c conda-forge eland
### Compatibility ### Compatibility
- Supports Python 3.9, 3.10, 3.11 and 3.12. - Supports Python 3.9, 3.10, 3.11, 3.12 and Pandas 1.5
- Supports Pandas 1.5 and 2.
- Supports Elasticsearch 8+ clusters, recommended 8.16 or later for all features to work. - 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 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 version of your Elasticsearch cluster. For all other features it is sufficient for the major versions

View File

@ -50,7 +50,10 @@ class Index:
# index_field.setter # index_field.setter
self._is_source_field = False self._is_source_field = False
self.es_index_field = es_index_field # 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
@property @property
def sort_field(self) -> str: def sort_field(self) -> str: