|
12 | 12 | history = history_file.read() |
13 | 13 |
|
14 | 14 | install_requires = [ |
15 | | - 'Keras>=2.4,<2.5', |
| 15 | + 'Keras>=2.4,<2.15', |
16 | 16 | 'featuretools>=0.6.1,<0.23', |
17 | 17 | 'iso639>=0.1.4,<0.2', |
18 | 18 | 'langdetect>=1.0.7,<2', |
19 | 19 | 'lightfm>=1.15,<2', |
20 | | - 'mlblocks>=0.4.0.dev0,<0.7', |
| 20 | + 'mlblocks>=0.6,<0.7', |
21 | 21 | 'networkx>=2.0,<3', |
22 | 22 | 'nltk>=3.3,<4', |
23 | | - 'numpy<1.21.0,>=1.16.0', |
| 23 | + 'numpy>=1.16.0,<2', |
24 | 24 | 'opencv-python>=3.4.0.12,<4.7', |
25 | 25 | 'pandas>=1,<2', |
26 | 26 | 'python-louvain>=0.10,<0.14', # community |
27 | 27 | 'scikit-image>=0.15', |
28 | 28 | 'scikit-learn>=0.21', |
29 | 29 | 'scipy>=1.1.0,<2', |
30 | | - 'statsmodels>=0.9.0,<0.13', |
31 | | - 'tensorflow>=2,<2.5', |
32 | | - 'xgboost>=0.72.1,<1', |
| 30 | + 'statsmodels>=0.9.0,<0.15', |
| 31 | + 'tensorflow>=2,<2.15', |
| 32 | + 'xgboost>=0.72.1,<2', |
33 | 33 | 'protobuf<4', |
34 | 34 | ] |
35 | 35 |
|
|
59 | 59 | 'mistune>=0.7,<2', |
60 | 60 | 'Jinja2>=2,<3.1', |
61 | 61 |
|
| 62 | + # fails on Sphinx < v3.4 |
| 63 | + 'alabaster<=0.7.12', |
| 64 | + # fails on Sphins < v5.0 |
| 65 | + 'sphinxcontrib-applehelp<1.0.8', |
| 66 | + 'sphinxcontrib-devhelp<1.0.6', |
| 67 | + 'sphinxcontrib-htmlhelp<2.0.5', |
| 68 | + 'sphinxcontrib-serializinghtml<1.1.10', |
| 69 | + 'sphinxcontrib-qthelp<1.0.7', |
| 70 | + |
62 | 71 | # style check |
63 | 72 | 'flake8>=3.7.7,<4', |
64 | 73 | 'isort>=4.3.4,<5', |
|
91 | 100 | 'License :: OSI Approved :: MIT License', |
92 | 101 | 'Natural Language :: English', |
93 | 102 | 'Programming Language :: Python :: 3', |
94 | | - 'Programming Language :: Python :: 3.6', |
95 | | - 'Programming Language :: Python :: 3.7', |
96 | 103 | 'Programming Language :: Python :: 3.8', |
| 104 | + 'Programming Language :: Python :: 3.9', |
| 105 | + 'Programming Language :: Python :: 3.10', |
| 106 | + 'Programming Language :: Python :: 3.11', |
97 | 107 | ], |
98 | 108 | description='Pipelines and primitives for machine learning and data science.', |
99 | 109 | entry_points = { |
|
117 | 127 | long_description_content_type='text/markdown', |
118 | 128 | name='mlprimitives', |
119 | 129 | packages=find_packages(include=['mlprimitives', 'mlprimitives.*']), |
120 | | - python_requires='>=3.6,<3.9', |
| 130 | + python_requires='>=3.8,<3.12', |
121 | 131 | setup_requires=setup_requires, |
122 | 132 | test_suite='tests', |
123 | 133 | tests_require=tests_require, |
124 | 134 | url='https://github.com/MLBazaar/MLPrimitives', |
125 | | - version='0.3.5', |
| 135 | + version='0.4.0.dev0', |
126 | 136 | zip_safe=False, |
127 | 137 | ) |
0 commit comments