Skip to content

Commit

Permalink
Add missing dependency on kneed
Browse files Browse the repository at this point in the history
  • Loading branch information
gmrukwa committed Jan 12, 2020
1 parent cdcb821 commit f180974
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 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: ${{ 14 }}
FIXUP: ${{ 15 }}
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.14
docker pull gmrukwa/divik:2.3.15
```

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

```bash
pip install divik==2.3.14
pip install divik==2.3.15
```

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.14'
__version__ = '2.3.15'

from ._seeding import seeded
from ._utils import DivikResult
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.14
docker pull gmrukwa/divik:2.3.15

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

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

pip install divik==2.3.14
pip install divik==2.3.15

If you want to have compatibility with
`gin-config <https://github.com/google/gin-config>`_, you can install
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@
'dash-core-components==0.42.0',
'dash-table==3.1.11',
'h5py>=2.8.0',
'kneed>=0.5.1',
'numpy>=0.12.1',
'pandas>=0.20.3',
'scipy>=0.19.1',
Expand Down

0 comments on commit f180974

Please sign in to comment.