From 9f6590aa3d66f661da72e06e8b9bb276436b7f6c Mon Sep 17 00:00:00 2001 From: Zach Probst Date: Tue, 23 Jul 2024 14:16:15 -0700 Subject: [PATCH 1/2] Actually file format support --- nodestream/pipeline/extractors/files.py | 1 + 1 file changed, 1 insertion(+) diff --git a/nodestream/pipeline/extractors/files.py b/nodestream/pipeline/extractors/files.py index a4b95b3ee..169e82b2c 100644 --- a/nodestream/pipeline/extractors/files.py +++ b/nodestream/pipeline/extractors/files.py @@ -81,6 +81,7 @@ def tempfile_cleanup(self): @SUPPORTED_FILE_FORMAT_REGISTRY.connect_baseclass class SupportedFileFormat(Pluggable, ABC): reader = None + entrypoint_name = "file_formats" def __init__(self, file: IngestibleFile) -> None: self.file = file From f84f99e1f4d21d320f702e737fa933958725791c Mon Sep 17 00:00:00 2001 From: Zach Probst Date: Tue, 23 Jul 2024 14:22:47 -0700 Subject: [PATCH 2/2] rev version --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index e3c90c1b2..10fef9891 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "nodestream" -version = "0.12.5a10" +version = "0.12.5a11" description = "A Fast, Declarative ETL for Graph Databases." license = "GPL-3.0-only" authors = [