Skip to content

Commit

Permalink
Merge pull request #139 from kurusugawa-computer/update-dependency
Browse files Browse the repository at this point in the history
`dataclasses-json`と`fire`の許容するバージョンの範囲を広げました
  • Loading branch information
seraphr committed Aug 6, 2024
2 parents 91eac6e + 4ae70ad commit 8b5631f
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 44 deletions.
2 changes: 1 addition & 1 deletion anno3d/model/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@


def camelcase(cls: Type[A]) -> Type[A]:
cls.dataclass_json_config = config(letter_case=LetterCase.CAMEL)["dataclasses_json"] # type: ignore[assignment]
cls.dataclass_json_config = config(letter_case=LetterCase.CAMEL)["dataclasses_json"]

# 受け取ったクラスはそのまま返す
return cls
Expand Down
64 changes: 23 additions & 41 deletions poetry.lock

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

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ packages = [
[tool.poetry.dependencies]
python = "^3.9"
annofabapi = ">=0.71.1"
dataclasses-json = "^0.5.7"
fire = "^0.3.1"
dataclasses-json = ">=0.5.7,<1"
fire = ">=0.3.1,<1"
more-itertools = "^8.5.0"
numpy = "^1.23.0"
scipy = "^1.9.0"
Expand Down

0 comments on commit 8b5631f

Please sign in to comment.