Skip to content

Commit 5feadbe

Browse files
author
Jesse
authored
security: bump pyarrow dependency to 14.0.1 (#284)
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]>
1 parent 5ed45f5 commit 5feadbe

File tree

3 files changed

+43
-45
lines changed

3 files changed

+43
-45
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
- Retries:
2323
- Add `_retry_max_redirects` config
2424
- Set `_enable_v3_retries=True` and warn if users override it
25+
- Security: bump minimum pyarrow version to 14.0.1 (CVE-2023-47248)
2526

2627
## 2.9.3 (2023-08-24)
2728

poetry.lock

Lines changed: 38 additions & 38 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,15 @@ include = ["CHANGELOG.md"]
1212
python = "^3.8.0"
1313
thrift = "^0.16.0"
1414
pandas = [
15-
{ version = ">=1.2.5,<1.4.0", python = ">=3.7,<3.8" },
16-
{ version = ">=1.2.5,<3.0.0", python = ">=3.8" },
17-
]
18-
pyarrow = [
19-
{ version = ">=6.0.0", python = ">=3.7,<3.11" },
20-
{ version = ">=10.0.1", python = ">=3.11" },
15+
{ version = ">=1.2.5,<3.0.0", python = ">=3.8" }
2116
]
17+
pyarrow = "^14.0.1"
18+
2219
lz4 = "^4.0.2"
2320
requests = "^2.18.1"
2421
oauthlib = "^3.1.0"
2522
numpy = [
26-
{ version = ">=1.16.6", python = ">=3.7,<3.11" },
23+
{ version = ">=1.16.6", python = ">=3.8,<3.11" },
2724
{ version = ">=1.23.4", python = ">=3.11" },
2825
]
2926
sqlalchemy = { version = ">=2.0.21", optional = true }

0 commit comments

Comments
 (0)