Skip to content

Commit

Permalink
fix: 🐞 pandas 3.13 support fixed
Browse files Browse the repository at this point in the history
Signed-off-by: Onuralp SEZER <[email protected]>
  • Loading branch information
onuralpszr committed Nov 27, 2024
1 parent ae9628e commit 1250d07
Show file tree
Hide file tree
Showing 3 changed files with 94 additions and 6 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/poetry-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,6 @@ jobs:
run: poetry check

- name: 🚀 Do Install the package Test
run: poetry install
run: poetry install --with dev --extras metrics

- name:
90 changes: 86 additions & 4 deletions poetry.lock

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

6 changes: 5 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,11 @@ pillow = ">=9.4"
requests = ">=2.26.0"
tqdm = ">=4.62.3"
# pandas: picked lowest major version that supports Python 3.8
pandas = { version = ">=2.0.0", optional = true }
pandas = [
{ version = ">=2.0.0", python = "<3.13",optional = true },
{ version = ">=2.2.3", python = ">=3.13",optional = true },
]

opencv-python = ">=4.5.5.64"

[tool.poetry.extras]
Expand Down

0 comments on commit 1250d07

Please sign in to comment.