Skip to content

Commit

Permalink
core\feat: #45 python310 support
Browse files Browse the repository at this point in the history
- added support for python 310 as it is still in LTS support and is the
  default choice for google colab at the moment
  • Loading branch information
blotero committed May 14, 2024
1 parent 32699fa commit 4e4488e
Show file tree
Hide file tree
Showing 2 changed files with 92 additions and 14 deletions.
100 changes: 89 additions & 11 deletions core/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 core/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[project]
description = "Framework for handling image segmentation in the context of multiple annotators"
name = "seg_tgce"
version = "0.1.0"
version = "0.1.1"
readme = "README.md"
authors = [{ name = "Brandon Lotero", email = "[email protected]" }]
maintainers = [{ name = "Brandon Lotero", email = "[email protected]" }]
Expand All @@ -15,7 +15,7 @@ Issues = "https://github.com/blotero/seg_tgce/issues"

[tool.poetry]
name = "seg_tgce"
version = "0.1.0"
version = "0.1.1"
authors = ["Brandon Lotero <[email protected]>"]
description = "A package for the SEG TGCE project"
readme = "README.md"
Expand All @@ -28,7 +28,7 @@ repository = "https://github.com/blotero/seg_tgce"


[tool.poetry.dependencies]
python = ">=3.11,<3.12"
python = ">=3.10,<3.12"
numpy = "^1.26.4"
keras = "2.15.0"
tensorflow = "2.15.1"
Expand Down

0 comments on commit 4e4488e

Please sign in to comment.