From fcac627b3c63b8437f6c161ad881cda6719a450a Mon Sep 17 00:00:00 2001 From: Parker Erickson Date: Mon, 18 Nov 2024 16:17:53 -0600 Subject: [PATCH 1/3] fix --- pyTigerGraph/gds/dataloaders.py | 2 +- pyTigerGraph/gds/featurizer.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyTigerGraph/gds/dataloaders.py b/pyTigerGraph/gds/dataloaders.py index 5205cc7c..3ce20c67 100644 --- a/pyTigerGraph/gds/dataloaders.py +++ b/pyTigerGraph/gds/dataloaders.py @@ -37,7 +37,7 @@ import numpy as np import pandas as pd -from ..pyTigerGraphException import TigerGraphException +from ..common.exception import TigerGraphException from .utilities import install_query_file, random_string, add_attribute __all__ = ["VertexLoader", "EdgeLoader", "NeighborLoader", "GraphLoader", "EdgeNeighborLoader", "NodePieceLoader", "HGTLoader"] diff --git a/pyTigerGraph/gds/featurizer.py b/pyTigerGraph/gds/featurizer.py index 81024939..dbc7ca0d 100644 --- a/pyTigerGraph/gds/featurizer.py +++ b/pyTigerGraph/gds/featurizer.py @@ -25,7 +25,7 @@ if TYPE_CHECKING: from ..pyTigerGraph import TigerGraphConnection -from ..pyTigerGraphException import TigerGraphException +from ..common.exception import TigerGraphException import json import re import time From fff5c9330be5c7b1ff6b197902749ef385819a26 Mon Sep 17 00:00:00 2001 From: Parker Erickson Date: Mon, 18 Nov 2024 17:27:43 -0600 Subject: [PATCH 2/3] add tg exception top level import --- pyTigerGraph/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pyTigerGraph/__init__.py b/pyTigerGraph/__init__.py index 0c6a3197..80d7ff5c 100644 --- a/pyTigerGraph/__init__.py +++ b/pyTigerGraph/__init__.py @@ -1,5 +1,6 @@ from pyTigerGraph.pyTigerGraph import TigerGraphConnection from pyTigerGraph.pytgasync.pyTigerGraph import AsyncTigerGraphConnection +from pyTigerGraph.common.exception import TigerGraphException __version__ = "1.8" From 85d7bbbaf10a1a660b28eea5f0ebee56450d00e4 Mon Sep 17 00:00:00 2001 From: Parker Erickson Date: Mon, 18 Nov 2024 17:28:05 -0600 Subject: [PATCH 3/3] bump version to 1.8.1 --- pyTigerGraph/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyTigerGraph/__init__.py b/pyTigerGraph/__init__.py index 80d7ff5c..9a7743d0 100644 --- a/pyTigerGraph/__init__.py +++ b/pyTigerGraph/__init__.py @@ -2,6 +2,6 @@ from pyTigerGraph.pytgasync.pyTigerGraph import AsyncTigerGraphConnection from pyTigerGraph.common.exception import TigerGraphException -__version__ = "1.8" +__version__ = "1.8.1" __license__ = "Apache 2"