Skip to content

Commit ea3be33

Browse files
committed
version 0.3.5
1 parent 535ea42 commit ea3be33

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

deslib/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@
2323
# list of all modules available in the library
2424
__all__ = ['des', 'dcs', 'static', 'util', 'tests']
2525

26-
__version__ = '0.4.dev'
26+
__version__ = '0.3.5'

setup.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
#!/usr/bin/env python
22

3+
import codecs
4+
import os
35
from distutils.core import setup
6+
47
from setuptools import find_packages
5-
import os
6-
import codecs
78

89
setup_path = os.path.abspath(os.path.dirname(__file__))
910
with codecs.open(os.path.join(setup_path, 'README.rst'), encoding='utf-8-sig') as f:
1011
README = f.read()
1112

1213
setup(name='DESlib',
13-
version='0.4.dev',
14+
version='0.3.5',
1415
url='https://github.com/Menelau/DESlib',
1516
maintainer='Rafael M. O. Cruz, L. G. Hafemann',
1617
maintainer_email='rafaelmenelau@gmail.com',
@@ -32,7 +33,7 @@
3233
'Topic :: Scientific/Engineering :: Artificial Intelligence',
3334
],
3435
install_requires=[
35-
'scikit-learn>=0.20.0',
36+
'scikit-learn>=0.21.0',
3637
'numpy>=1.17.0',
3738
'scipy>=1.4.0',
3839
],

0 commit comments

Comments
 (0)