|
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 | 19 | 'mlblocks>=0.6,<0.7', |
20 | 20 | 'networkx>=2.0,<3', |
21 | 21 | 'nltk>=3.3,<4', |
22 | | - 'numpy>=1.16.0,<2', |
| 22 | + 'numpy>=1.16.0,<3', |
23 | 23 | 'opencv-python>=3.4.0.12,<4.7', |
24 | | - 'pandas>=1,<2', |
| 24 | + 'pandas>=1,<3', |
25 | 25 | 'python-louvain>=0.10,<0.14', # community |
26 | 26 | 'scikit-image>=0.15', |
27 | 27 | 'scikit-learn>=0.21', |
28 | 28 | 'scipy>=1.1.0,<2', |
29 | 29 | 'statsmodels>=0.9.0,<0.15', |
30 | | - 'tensorflow>=2,<2.15', |
| 30 | + 'tensorflow>=2,<3', |
31 | 31 | 'xgboost>=0.72.1,<2', |
32 | 32 | 'protobuf<4', |
33 | 33 | ] |
|
47 | 47 | # general |
48 | 48 | 'bumpversion>=0.5.3,<0.6', |
49 | 49 | 'pip>=9.0.1', |
50 | | - 'watchdog>=0.8.3,<0.11', |
| 50 | + 'watchdog>=0.8.3,<5', |
51 | 51 |
|
52 | 52 | # docs |
53 | 53 | 'm2r>=0.2.0,<0.3', |
|
103 | 103 | 'Programming Language :: Python :: 3.9', |
104 | 104 | 'Programming Language :: Python :: 3.10', |
105 | 105 | 'Programming Language :: Python :: 3.11', |
| 106 | + 'Programming Language :: Python :: 3.12', |
106 | 107 | ], |
107 | 108 | description='Pipelines and primitives for machine learning and data science.', |
108 | 109 | entry_points = { |
|
126 | 127 | long_description_content_type='text/markdown', |
127 | 128 | name='mlprimitives', |
128 | 129 | packages=find_packages(include=['mlprimitives', 'mlprimitives.*']), |
129 | | - python_requires='>=3.8,<3.12', |
| 130 | + python_requires='>=3.8,<3.13', |
130 | 131 | setup_requires=setup_requires, |
131 | 132 | test_suite='tests', |
132 | 133 | tests_require=tests_require, |
|
0 commit comments