Skip to content

Commit

Permalink
fix dependency specification
Browse files Browse the repository at this point in the history
  • Loading branch information
nobu-g committed Mar 18, 2023
1 parent e42fb0a commit 26a274b
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 103 deletions.
117 changes: 17 additions & 100 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ documentation = "https://rhoknp.readthedocs.io/en/latest"
keywords = ["NLP"]

[tool.poetry.dependencies]
python = ">=3.7,<3.12"
python = "^3.7"
cached-property = { version = "^1.5", python = "<3.8" }
importlib-metadata = { version = ">=5.2", python = "<3.8" }
typer = { version = ">=0.6.1,<0.8", optional = true }
typer = { version = ">=0.6.1", optional = true }
PyYAML = { version = "^6.0", optional = true }
rich = { version = ">=12.6,<14", optional = true }
rich = { version = ">=12.6", optional = true }
uvicorn = { version = "^0.20.0", optional = true }
fastapi = { version = "^0.92.0", optional = true }

Expand Down

0 comments on commit 26a274b

Please sign in to comment.