Skip to content

Commit

Permalink
Fix bad import
Browse files Browse the repository at this point in the history
  • Loading branch information
gmrukwa committed Jan 12, 2020
1 parent f180974 commit b322f16
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 22 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
env:
MAJOR: ${{ 2 }}
MINOR: ${{ 3 }}
FIXUP: ${{ 15 }}
FIXUP: ${{ 16 }}
PACKAGE_INIT_FILE: ${{ 'divik/__init__.py' }}
DOCKER_REPO: ${{ 'gmrukwa/divik' }}
IS_ALPHA: ${{ github.event_name == 'pull_request' }}
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ docker pull gmrukwa/divik
To install specific version, you can specify it in the command, e.g.:

```bash
docker pull gmrukwa/divik:2.3.15
docker pull gmrukwa/divik:2.3.16
```

## Python package
Expand All @@ -60,7 +60,7 @@ pip install divik
or any stable tagged version, e.g.:

```bash
pip install divik==2.3.15
pip install divik==2.3.16
```

If you want to have compatibility with
Expand Down
2 changes: 1 addition & 1 deletion divik/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '2.3.15'
__version__ = '2.3.16'

from ._seeding import seeded
from ._utils import DivikResult
Expand Down
17 changes: 1 addition & 16 deletions divik/_cli/dunn_divik.py
Original file line number Diff line number Diff line change
@@ -1,25 +1,10 @@
#!/usr/bin/env python
import json
import logging
import os
import pickle
import typing
import numpy as np
import pandas as pd
import skimage.io as sio

from divik._cli._data_io import DIVIK_RESULT_FNAME
from divik.cluster import DunnDiviK
import divik._summary as _smr
import divik._cli._utils as sc
import divik._utils as u

from divik._cli.divik import (
_make_summary,
_make_merged,
_save_merged,
_save
)
from divik._cli.divik import save


def main():
Expand Down
4 changes: 2 additions & 2 deletions docs/instructions/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ To install latest stable version use::

To install specific version, you can specify it in the command, e.g.::

docker pull gmrukwa/divik:2.3.15
docker pull gmrukwa/divik:2.3.16

Python package
--------------
Expand All @@ -31,7 +31,7 @@ package::

or any stable tagged version, e.g.::

pip install divik==2.3.15
pip install divik==2.3.16

If you want to have compatibility with
`gin-config <https://github.com/google/gin-config>`_, you can install
Expand Down

0 comments on commit b322f16

Please sign in to comment.