Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@

## 2.7.x (Unreleased)

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

## 2.7.0 (2023-06-26)

Expand Down
81 changes: 79 additions & 2 deletions poetry.lock

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

6 changes: 5 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,11 @@ include = ["CHANGELOG.md"]
[tool.poetry.dependencies]
python = "^3.7.1"
thrift = "^0.16.0"
pandas = "^1.2.5"
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"}
Expand Down