Skip to content

Commit

Permalink
fix(deps): add numpy<2 constraint when pandas<2
Browse files Browse the repository at this point in the history
Signed-off-by: Luka Peschke <[email protected]>
  • Loading branch information
lukapeschke committed Nov 21, 2024
1 parent 99be4f3 commit 8f740b4
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 12 deletions.
58 changes: 46 additions & 12 deletions poetry.lock

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

4 changes: 4 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ google-cloud-bigquery = { version = ">=3,<4", extras = [
hubspot-api-client = { version = ">=7.4,<11.0", optional = true }
jq = { version = "^1.2.2", optional = true }
lxml = { version = ">=4.6.5,<6.0.0", optional = true }
numpy = [
{ version = "<2", python = "<3.12", optional = true },
{ version = ">=2", python = ">=3.12", optional = true },
]
oauth2client = { version = "^4.1.3", optional = true }
oauthlib = { version = "3.2.2", optional = true }
pandas = [
Expand Down

0 comments on commit 8f740b4

Please sign in to comment.