|
47 | 47 | 'Operating System :: OS Independent', |
48 | 48 | 'Programming Language :: Python :: 3', |
49 | 49 | 'Programming Language :: Python :: 3 :: Only', |
50 | | - 'Programming Language :: Python :: 3.7', |
51 | 50 | 'Programming Language :: Python :: 3.8', |
52 | 51 | 'Programming Language :: Python :: 3.9', |
53 | 52 | 'Programming Language :: Python :: 3.10', |
| 53 | + 'Programming Language :: Python :: 3.11', |
54 | 54 | 'Topic :: Scientific/Engineering', |
55 | 55 | 'Topic :: Scientific/Engineering :: Artificial Intelligence', |
56 | 56 | 'Topic :: Scientific/Engineering :: Information Analysis', |
|
70 | 70 | 'six', |
71 | 71 | 'docopt', |
72 | 72 | 'cachetools', |
73 | | - 'numpy', |
| 73 | + 'numpy<2', |
74 | 74 | 'scipy', |
75 | 75 | 'pandas', |
76 | 76 | 'scikit-learn', |
77 | 77 | 'dill', |
78 | | - 'torch>=1.3', |
79 | | - 'transformers>=3.0.2', |
| 78 | + 'torch>=2.0', |
| 79 | + 'transformers>=4.0,<4.44.0', |
80 | 80 | 'editdistance', |
81 | 81 | 'requests', |
82 | 82 | 'emoji', |
|
87 | 87 | ] |
88 | 88 |
|
89 | 89 | INSTALL_REQUIRES_NOT_WINDOWS = [ |
90 | | - 'camel-kenlm >= 2023.3.17.2 ; platform_system!="Windows"' |
| 90 | + 'camel-kenlm >= 2024.5.6 ; platform_system!="Windows"' |
91 | 91 | ] |
92 | 92 |
|
93 | 93 | if sys.platform != 'win32': |
|
140 | 140 | long_description=LONG_DESCRIPTION, |
141 | 141 | classifiers=CLASSIFIERS, |
142 | 142 | install_requires=INSTALL_REQUIRES, |
143 | | - python_requires='>=3.7.0, <3.11' |
| 143 | + python_requires='>=3.8.0, <3.12' |
144 | 144 | ) |
0 commit comments