Skip to content

Commit

Permalink
Update to version 0.9.5
Browse files Browse the repository at this point in the history
Update all required package version to those installed
in a clean conda python v3.6 environment.
  • Loading branch information
Max Baak committed Dec 17, 2018
1 parent 6745347 commit 74e9917
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion README.rst
Expand Up @@ -2,7 +2,7 @@
Phi_K Correlation Analyzer Library
==================================

* Version: 0.9.4. Released: Dec 2018
* Version: 0.9.5. Released: Dec 2018
* Documentation: https://phik.readthedocs.io
* Repository: https://github.com/kaveio/phik
* Publication: https://arxiv.org/abs/1811.11440
Expand Down
4 changes: 2 additions & 2 deletions python/phik/version.py
@@ -1,6 +1,6 @@
"""THIS FILE IS AUTO-GENERATED BY PHIK SETUP.PY."""

name = 'phik'
version = '0.9.3'
full_version = '0.9.3'
version = '0.9.5'
full_version = '0.9.5'
release = True
16 changes: 8 additions & 8 deletions setup.py
Expand Up @@ -20,7 +20,7 @@

MAJOR = 0
REVISION = 9
PATCH = 4
PATCH = 5
DEV = False

# note: also update README.rst
Expand All @@ -30,16 +30,16 @@
if DEV:
FULL_VERSION += '.dev'

TEST_REQUIREMENTS = ['pytest>=3.5.0',
'pytest-pylint>=0.9.0',
TEST_REQUIREMENTS = ['pytest>=4.0.2',
'pytest-pylint>=0.13.0',
]

REQUIREMENTS = [
'numpy>=1.15.0',
'scipy>=0.19.0',
'pandas>=0.21.1',
'matplotlib>=2.0.2',
'numba>=0.24.0'
'numpy>=1.15.4',
'scipy>=1.1.0',
'pandas>=0.23.4',
'matplotlib>=3.0.2',
'numba>=0.41.0'
]

REQUIREMENTS = REQUIREMENTS + TEST_REQUIREMENTS
Expand Down

0 comments on commit 74e9917

Please sign in to comment.