|
12 | 12 | history = history_file.read() |
13 | 13 |
|
14 | 14 | install_requires = [ |
15 | | - 'Keras>=2.4,<2.15', |
16 | | - 'featuretools>=0.6.1,<0.23', |
| 15 | + 'Keras>=2.4,<4', |
| 16 | + 'featuretools>=0.6.1,<2', |
17 | 17 | 'iso639>=0.1.4,<0.2', |
18 | 18 | 'langdetect>=1.0.7,<2', |
19 | | - 'lightfm>=1.15,<2', |
20 | | - 'mlblocks>=0.6,<0.7', |
| 19 | + #'lightfm>=1.15,<2', <-- no longer supported |
| 20 | + 'mlblocks>=0.6,<1', |
21 | 21 | 'networkx>=2.0,<3', |
22 | 22 | 'nltk>=3.3,<4', |
23 | | - 'numpy>=1.16.0,<2', |
| 23 | + 'numpy>=1.16.0,<3', |
24 | 24 | 'opencv-python>=3.4.0.12,<4.7', |
25 | | - 'pandas>=1,<2', |
| 25 | + 'pandas>=1,<3', |
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 | 30 | 'statsmodels>=0.9.0,<0.15', |
31 | | - 'tensorflow>=2,<2.15', |
| 31 | + 'tensorflow>=2,<3', |
32 | 32 | 'xgboost>=0.72.1,<2', |
33 | 33 | 'protobuf<4', |
34 | 34 | ] |
|
48 | 48 | # general |
49 | 49 | 'bumpversion>=0.5.3,<0.6', |
50 | 50 | 'pip>=9.0.1', |
51 | | - 'watchdog>=0.8.3,<0.11', |
| 51 | + 'watchdog>=0.8.3,<5', |
52 | 52 |
|
53 | 53 | # docs |
54 | 54 | 'm2r>=0.2.0,<0.3', |
|
104 | 104 | 'Programming Language :: Python :: 3.9', |
105 | 105 | 'Programming Language :: Python :: 3.10', |
106 | 106 | 'Programming Language :: Python :: 3.11', |
| 107 | + 'Programming Language :: Python :: 3.12', |
107 | 108 | ], |
108 | 109 | description='Pipelines and primitives for machine learning and data science.', |
109 | 110 | entry_points = { |
|
127 | 128 | long_description_content_type='text/markdown', |
128 | 129 | name='mlprimitives', |
129 | 130 | packages=find_packages(include=['mlprimitives', 'mlprimitives.*']), |
130 | | - python_requires='>=3.8,<3.12', |
| 131 | + python_requires='>=3.8,<3.13', |
131 | 132 | setup_requires=setup_requires, |
132 | 133 | test_suite='tests', |
133 | 134 | tests_require=tests_require, |
|
0 commit comments