Skip to content

Commit

Permalink
security: bump pyarrow dependency to 14.0.1 (#284)
Browse files Browse the repository at this point in the history
pyarrow is currently compatible with Python 3.8 → Python 3.11

I also removed specifiers for when Python is 3.7 since this no longer
applies.

Signed-off-by: Jesse Whitehouse <[email protected]>
  • Loading branch information
Jesse authored Nov 17, 2023
1 parent 5ed45f5 commit 5feadbe
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 45 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
- Retries:
- Add `_retry_max_redirects` config
- Set `_enable_v3_retries=True` and warn if users override it
- Security: bump minimum pyarrow version to 14.0.1 (CVE-2023-47248)

## 2.9.3 (2023-08-24)

Expand Down
76 changes: 38 additions & 38 deletions poetry.lock

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

11 changes: 4 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,15 @@ include = ["CHANGELOG.md"]
python = "^3.8.0"
thrift = "^0.16.0"
pandas = [
{ version = ">=1.2.5,<1.4.0", python = ">=3.7,<3.8" },
{ version = ">=1.2.5,<3.0.0", python = ">=3.8" },
]
pyarrow = [
{ version = ">=6.0.0", python = ">=3.7,<3.11" },
{ version = ">=10.0.1", python = ">=3.11" },
{ version = ">=1.2.5,<3.0.0", python = ">=3.8" }
]
pyarrow = "^14.0.1"

lz4 = "^4.0.2"
requests = "^2.18.1"
oauthlib = "^3.1.0"
numpy = [
{ version = ">=1.16.6", python = ">=3.7,<3.11" },
{ version = ">=1.16.6", python = ">=3.8,<3.11" },
{ version = ">=1.23.4", python = ">=3.11" },
]
sqlalchemy = { version = ">=2.0.21", optional = true }
Expand Down

0 comments on commit 5feadbe

Please sign in to comment.