Skip to content

Commit

Permalink
Merge pull request #10 from neptune-ai/rj/non-internal-imports
Browse files Browse the repository at this point in the history
Changed integrations utils to be imported from non-internal package
  • Loading branch information
Raalsky committed Sep 12, 2022
2 parents 4c1cb31 + 6b82fca commit abbae91
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
## neptune-xgboost 0.10.0

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

## neptune-xgboost 0.9.13

### Fixes
- Support `learning reate` for `updater` types ([#8](https://github.com/neptune-ai/neptune-xgboost/pull/8))


## neptune-xgboost 0.9.12

### Fixes
- Do not log `learning rate` if value is unavailable ([#6](https://github.com/neptune-ai/neptune-xgboost/pull/6))


## neptune-xgboost 0.9.11

### Features
Expand Down
6 changes: 2 additions & 4 deletions neptune_xgboost/impl/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,11 @@
try:
# neptune-client=0.9.0+ package structure
import neptune.new as neptune
from neptune.new.internal.utils import verify_type
from neptune.new.internal.utils.compatibility import expect_not_an_experiment
from neptune.new.integrations.utils import verify_type, expect_not_an_experiment
except ImportError:
# neptune-client>=1.0.0 package structure
import neptune
from neptune.internal.utils import verify_type
from neptune.internal.utils.compatibility import expect_not_an_experiment
from neptune.integrations.utils import verify_type, expect_not_an_experiment

INTEGRATION_VERSION_KEY = "source_code/integrations/neptune-xgboost"

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

base_libs = ['neptune-client>=0.10.0', 'xgboost>=1.3.0', 'matplotlib', 'graphviz']
base_libs = ['neptune-client>=0.16.7', 'xgboost>=1.3.0', 'matplotlib', 'graphviz']

version = None
if os.path.exists('PKG-INFO'):
Expand Down

0 comments on commit abbae91

Please sign in to comment.