Skip to content

Commit

Permalink
more explicit package versions for python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
ADBond committed Nov 25, 2024
1 parent 452d6d5 commit 44fb54e
Show file tree
Hide file tree
Showing 2 changed files with 62 additions and 2 deletions.
54 changes: 54 additions & 0 deletions poetry.lock

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

10 changes: 8 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@ readme = "README.md"
python = ">=3.8.0,<4.0.0"
jsonschema = ">=3.2"
# 1.3.5 is the last version supporting py 3.7.1
pandas = ">1.3.5"
pandas = [
{ version = ">1.3.5", python = "<3.13" },
{ version = ">=2.2.3", python = ">=3.13" }
]
duckdb = ">=0.9.2"
sqlglot = ">=13.0.0"
altair = "^5.0.1"
Expand Down Expand Up @@ -64,7 +67,10 @@ ruff = "^0.4.2"
[tool.poetry.group.testing.dependencies]
# pin to reduce dependencies
pytest = ">=7.3"
pyarrow = ">=7.0.0"
pyarrow = [
{ version = ">=7.0.0", python = "<3.13" },
{ version = ">=18.0.0", python = ">=3.13" }
]
networkx = ">=2.5.1"
rapidfuzz = ">=2.0.3"

Expand Down

0 comments on commit 44fb54e

Please sign in to comment.