We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8bda664 + 6c403f0 commit aec36ffCopy full SHA for aec36ff
setup.py
@@ -16,8 +16,8 @@
16
py39_requirements = [
17
'scikit-learn==1.1.2',
18
'numpy==1.23.0', # require a version which is compatible with py3.9 and is > 1.20 due to API changes
19
- 'pandas~=1.4.3',
20
- 'scipy~=1.9.0',
+ 'pandas~=1.5',
+ 'scipy~=1.10.0',
21
]
22
23
if sys.version_info[0] == 3 and sys.version_info[1] == 6:
@@ -27,11 +27,11 @@
27
28
29
setup(name='mlxtend',
30
- version='0.0.3',
+ version='0.0.4',
31
description='Machine Learning Library Extensions',
32
url='https://github.com/pelucid/mlxtend',
33
packages=find_packages(),
34
install_requires=requirements,
35
setup_requires=["pytest-runner"],
36
tests_require=['pytest~=6.2', 'pytest-cov', 'tomli==1.2.2', 'coverage==6.2']
37
- )
+ )
0 commit comments