Skip to content

Commit

Permalink
Updated dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
owo committed Aug 22, 2024
1 parent 2e253c5 commit 1207f9f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Information Analysis',
Expand All @@ -70,13 +70,13 @@
'six',
'docopt',
'cachetools',
'numpy',
'numpy<2',
'scipy',
'pandas',
'scikit-learn',
'dill',
'torch>=1.3',
'transformers>=3.0.2',
'torch>=2.0',
'transformers>=4.0,<4.44.0',
'editdistance',
'requests',
'emoji',
Expand All @@ -87,7 +87,7 @@
]

INSTALL_REQUIRES_NOT_WINDOWS = [
'camel-kenlm >= 2023.3.17.2 ; platform_system!="Windows"'
'camel-kenlm >= 2024.5.6 ; platform_system!="Windows"'
]

if sys.platform != 'win32':
Expand Down Expand Up @@ -140,5 +140,5 @@
long_description=LONG_DESCRIPTION,
classifiers=CLASSIFIERS,
install_requires=INSTALL_REQUIRES,
python_requires='>=3.7.0, <3.11'
python_requires='>=3.8.0, <3.12'
)

0 comments on commit 1207f9f

Please sign in to comment.