Skip to content

Commit d7f76e4

Browse files
itsdaniJesse Whitehouse
andauthored
Relax pandas dependency constraint to allow ^2.0.0 (#164)
Signed-off-by: Daniel Segesdi <[email protected]> Signed-off-by: Jesse Whitehouse <[email protected]> Co-authored-by: Jesse Whitehouse <[email protected]>
1 parent 1965df5 commit d7f76e4

File tree

3 files changed

+89
-7
lines changed

3 files changed

+89
-7
lines changed

CHANGELOG.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@
22

33
## 2.7.x (Unreleased)
44

5-
- Add support for Cloud Fetch
6-
- Fix: Revised SQLAlchemy dialect and examples for compatibility with SQLAlchemy==1.3.x
7-
- Fix: oauth would fail if expired credentials appeared in ~/.netrc
8-
- Fix: Python HTTP proxies were broken after switch to urllib3
5+
- Add support for Cloud Fetch (#146, #151, #154)
6+
- Fix: Revised SQLAlchemy dialect and examples for compatibility with SQLAlchemy==1.3.x (#173)
7+
- Fix: oauth would fail if expired credentials appeared in ~/.netrc (#122)
8+
- Fix: Python HTTP proxies were broken after switch to urllib3 (#158)
9+
- Other: Relax pandas dependency constraint to allow ^2.0.0 (#164)
910

1011
## 2.7.0 (2023-06-26)
1112

poetry.lock

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

pyproject.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,11 @@ include = ["CHANGELOG.md"]
1111
[tool.poetry.dependencies]
1212
python = "^3.7.1"
1313
thrift = "^0.16.0"
14-
pandas = "^1.2.5"
14+
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+
1519
pyarrow = [
1620
{version = ">=6.0.0", python = ">=3.7,<3.11"},
1721
{version = ">=10.0.1", python = ">=3.11"}

0 commit comments

Comments
 (0)