Skip to content

Commit

Permalink
fix versions & format
Browse files Browse the repository at this point in the history
  • Loading branch information
akotlar committed Mar 14, 2024
1 parent c336051 commit f6d3031
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,17 @@ description = "SomaLogic Python Data Input/Output Library"
authors = ["SomaLogic"]
license = "MIT"
readme = "README.md"
include = [
{ path = "canopy/data/lift.zip" },
{ path = "*.adat" }
]
include = [{ path = "canopy/data/lift.zip" }, { path = "*.adat" }]

[tool.poetry.dependencies]
python = "^3.8"
pandas = [
{version = "<=2.0.3", python = ">=3.8, <3.12"},
{version = "^2.2", python = ">=3.12"}
{ version = "<=2.0.3", python = "3.8" },
{ version = ">2.0.3", python = ">=3.9" },
]
numpy = [
{version = ">=1.19,<1.21", python = ">=3.8,<3.9"},
{version = "^1.21", python = ">=3.9"}
{ version = ">=1.19,<1.21", python = ">=3.8,<3.9" },
{ version = "^1.21", python = ">=3.9" },
]
openpyxl = "^3.0"

Expand Down

0 comments on commit f6d3031

Please sign in to comment.