Skip to content

Commit

Permalink
fix broken numpy per numpy/numpy#26710
Browse files Browse the repository at this point in the history
  • Loading branch information
yehoshuadimarsky committed Nov 24, 2024
1 parent 0eb03fb commit 45cf60c
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 11 deletions.
7 changes: 5 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@ readme = "README.md"
urls = { repository = "https://github.com/yehoshuadimarsky/bcpandas" }
dynamic = ["version"]
dependencies = [
"pandas >=1.5",
# per https://github.com/apache/airflow/pull/40272 and https://github.com/numpy/numpy/issues/26710
"pandas >=2.2; python_version >=\"3.12\"",
"pandas >=2.1.2, <2.2; python_version >=\"3.9\" and python_version <=\"3.11\"",
"pandas >=1.5.3, <2.2; python_version <\"3.9\"",
"pyodbc >=5",
"sqlalchemy >=1.4",
]
Expand All @@ -37,7 +40,7 @@ version = {attr = "bcpandas.__version__.version"}
dev = [
"pre-commit >=3",
"mypy >=1",
"ruff",
"ruff >=0.6",
"types-setuptools",
]
test = [
Expand Down
60 changes: 51 additions & 9 deletions uv.lock

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

0 comments on commit 45cf60c

Please sign in to comment.