Skip to content

Commit

Permalink
Update dependencies, removing strict package dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
goldpulpy committed Oct 6, 2024
1 parent 301adb7 commit 38d65c9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ license = { text = "MIT" }
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"tokenizers==0.20.0",
"onnxruntime-gpu==1.19.2",
"beautifulsoup4==4.12.3",
"platformdirs==4.3.6"
"tokenizers",
"onnxruntime-gpu",
"beautifulsoup4",
"platformdirs"
]
keywords = ["sentence similarity", "NLP", "natural language processing"]
classifiers = [
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@
keywords="sentence similarity NLP natural language processing",
python_requires='>=3.8',
install_requires=[
"tokenizers==0.20.0",
"onnxruntime-gpu==1.19.2",
"beautifulsoup4==4.12.3",
"platformdirs==4.3.6"
"tokenizers",
"onnxruntime-gpu",
"beautifulsoup4",
"platformdirs"
],
)

0 comments on commit 38d65c9

Please sign in to comment.