Skip to content

Commit

Permalink
fix dependencies versions. version bump to 2.0.0rc4
Browse files Browse the repository at this point in the history
  • Loading branch information
GregaVrbancic committed Nov 30, 2018
1 parent ac2c040 commit 9e12d63
Show file tree
Hide file tree
Showing 7 changed files with 347 additions and 356 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Revision History

## 2.0.0rc4 (Nov 30, 2018)

- fix dependecies versions

## 2.0.0rc3 (Nov 30, 2018)

- added moth flame optimizer
Expand Down
2 changes: 1 addition & 1 deletion NiaPy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

__all__ = ['algorithms', 'benchmarks', 'util']
__project__ = 'NiaPy'
__version__ = '2.0.0rc3'
__version__ = '2.0.0rc4'

VERSION = "{0} v{1}".format(__project__, __version__)

Expand Down
6 changes: 3 additions & 3 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ name = "pypi"
[packages]

click = "*"
numpy = "==1.15.0"
scipy = "==1.1.0"
xlsxwriter = "==1.0.2"
numpy = ">=1.15.0"
scipy = ">=1.1.0"
xlsxwriter = ">=1.0.2"
matplotlib = "*"


Expand Down
669 changes: 323 additions & 346 deletions Pipfile.lock

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,11 @@ fits your purposes or that it is bug-free. Use it at your own risk!
Revision History
================

2.0.0rc4 (Nov 30, 2018)
-----------------------

- fix dependecies versions

2.0.0rc3 (Nov 30, 2018)
-----------------------

Expand Down
5 changes: 5 additions & 0 deletions docs/source/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ Changelog

We are using `semantic versioning <https://semver.org/>`_.

2.0.0rc4 (Nov 30, 2018)
-----------------------

- fix dependecies versions

2.0.0rc3 (Nov 30, 2018)
-----------------------

Expand Down
12 changes: 6 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,11 +83,11 @@ def build_description():

install_requires=[
# TODO: Add your library's requirements here
'numpy ~= 1.15.0',
'enum34 ~= 1.1.6',
'click ~= 6.0',
'scipy ~= 1.1.0',
'xlsxwriter ~= 1.0.2',
'matplotlib ~= 2.2.3',
'numpy >= 1.15.0',
'enum34 >= 1.1.6',
'click >= 6.0',
'scipy >= 1.1.0',
'xlsxwriter >= 1.0.2',
'matplotlib >= 2.2.3',
]
)

0 comments on commit 9e12d63

Please sign in to comment.