Skip to content

Commit

Permalink
build(python): add python 3.13 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
d33bs committed Nov 8, 2024
1 parent 04607e6 commit 4e00761
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 5 deletions.
56 changes: 53 additions & 3 deletions poetry.lock

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

7 changes: 5 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,12 @@ repository = "https://github.com/cytomining/pycytominer"
include = [ { path = "poetry.lock", format = "sdist" } ]

[tool.poetry.dependencies]
python = ">=3.9,<3.13"
python = ">=3.9,<3.14"
numpy = ">=1.16.5"
scipy = ">=1.5"
scipy = [
{ version = ">=1.5", python = "<3.13" },
{ version = ">1.13", python = ">=3.13" },
]
pandas = ">=1.2.0"
scikit-learn = ">=0.21.2"
sqlalchemy = ">=1.3.6,<3"
Expand Down

0 comments on commit 4e00761

Please sign in to comment.