Skip to content

Commit

Permalink
dependencies: loosen version on pandas and numpy
Browse files Browse the repository at this point in the history
  • Loading branch information
sirupsen committed Nov 21, 2024
1 parent 09c7059 commit 3b83db2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
7 changes: 3 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "turbopuffer"
version = "0.1.22"
version = "0.1.23"
description = "Python Client for accessing the turbopuffer API"
authors = ["turbopuffer Inc. <[email protected]>"]
homepage = "https://turbopuffer.com"
Expand Down Expand Up @@ -32,9 +32,8 @@ python = "^3.9"
requests = "^2.31"
iso8601 = "^2.1.0"
orjson = {version = ">=3.9, <=3.10.3", optional = true} # 3.10.4 errors on install
numpy = {version = "^1.26.3", optional = true}
pandas = {version = "^2.1.4", optional = true}

numpy = {version = ">=1.24.0", optional = true}
pandas = {version = ">=2.0.0, <=3.0.0", optional = true}

[tool.poetry.extras]
fast = ["orjson"]
Expand Down
2 changes: 1 addition & 1 deletion turbopuffer/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = '0.1.22'
VERSION = '0.1.23'

0 comments on commit 3b83db2

Please sign in to comment.