Skip to content

Commit 08f2f28

Browse files
tensorflow dependency issue is resolved.
1 parent 430ea90 commit 08f2f28

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

setup.py

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setup(
77
name="vngrs-nlp",
8-
version="0.2.3",
8+
version="0.2.4",
99
description="Turkish NLP Tools developed by VNGRS.",
1010
long_description=README,
1111
long_description_content_type="text/markdown",
@@ -32,6 +32,7 @@
3232
"Programming Language :: Python :: 3.8",
3333
"Programming Language :: Python :: 3.9",
3434
"Programming Language :: Python :: 3.10",
35+
"Programming Language :: Python :: 3.11"
3536
],
3637
project_urls={
3738
"Homepage": "https://github.com/vngrs-ai/vnlp",
@@ -40,17 +41,12 @@
4041
},
4142
packages=find_packages(exclude=["turkish_embeddings"]),
4243
include_package_data=True,
43-
setup_requires=[
44-
"swig==3.0.12",
45-
],
4644
install_requires=[
4745
'tensorflow<2.6.0; python_version < "3.8"',
48-
'tensorflow>=2.6.0; python_version >= "3.8"',
49-
"swig==3.0.12",
46+
'tensorflow>=2.6,<2.16; python_version >= "3.8"',
5047
"regex",
5148
"requests",
5249
"sentencepiece",
53-
"jamspell"
5450
],
5551
extras_require={"extras": ["gensim", "spacy"], "develop": ["pre-commit", "pytest"]},
5652
entry_points={"console_scripts": ["vnlp=vnlp.bin.vnlp:main"]},

0 commit comments

Comments
 (0)