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 Dec 3, 2024
1 parent 4b5a58c commit 80d6805
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 11 deletions.
56 changes: 45 additions & 11 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,<12.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 80d6805

Please sign in to comment.