Skip to content

Commit

Permalink
Changed integrations utils to be imported from non-internal package (#45
Browse files Browse the repository at this point in the history
)
  • Loading branch information
Raalsky authored Sep 12, 2022
1 parent 44e3d95 commit bfe4da4
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## kedro-neptune 0.1.3

### Changes
- Changed integrations utils to be imported from non-internal package ([#45](https://github.com/neptune-ai/kedro-neptune/pull/45))

## kedro-neptune 0.1.2

### Fixes
Expand Down
6 changes: 2 additions & 4 deletions kedro_neptune/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,15 +53,13 @@
import neptune.new as neptune
from neptune.new.types import File
from neptune.new.handler import Handler
from neptune.new.internal.utils import verify_type
from neptune.new.internal.utils.paths import join_paths
from neptune.new.integrations.utils import verify_type, join_paths
except ImportError:
# neptune-client>=1.0.0 package structure
import neptune
from neptune.types import File
from neptune.handler import Handler
from neptune.internal.utils import verify_type
from neptune.internal.utils.paths import join_paths
from neptune.integrations.utils import verify_type, join_paths

INTEGRATION_VERSION_KEY = 'source_code/integrations/kedro-neptune'

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def main():
extras['all'] = all_deps

base_libs = [
'neptune-client>=0.15.2',
'neptune-client>=0.16.7',
'kedro>=0.18.0',
'ruamel.yaml==0.17.10',
]
Expand Down

0 comments on commit bfe4da4

Please sign in to comment.