Skip to content

Commit

Permalink
better dependency versions for tensorflow, keras
Browse files Browse the repository at this point in the history
  • Loading branch information
sr1998 committed May 11, 2024
1 parent 22ecd16 commit 64cb8bb
Showing 1 changed file with 17 additions and 3 deletions.
20 changes: 17 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,24 @@ packages = [

[tool.poetry.dependencies]
python = "~3.9"
keras = "^2.10"
keras = [
{platform = "darwin", version = "2.15.0"},
{platform = "linux", version = ""^2.10""},
{platform = "win32", version = ""^2.10""}
]
scikit-learn = "1.2.2"
tensorflow = "~2.10"
tensorflow-io-gcs-filesystem ="0.27.0"
tensorflow = [
{platform = "darwin", version = "2.16.0"},
{platform = "linux", version = ""~2.10""},
{platform = "win32", version = ""~2.10""}
]

tensorflow-io-gcs-filesystem = [
{platform = "darwin", version = "0.37.0"},
{platform = "linux", version = "0.27.0"},
{platform = "win32", version = "0.27.0"}
]


[tool.poetry.group.dev]
optional = true
Expand Down

0 comments on commit 64cb8bb

Please sign in to comment.