From 8c11682b01ca61668babef94e1e1ba7555b0f361 Mon Sep 17 00:00:00 2001 From: "mergify[bot]" <37929162+mergify[bot]@users.noreply.github.com> Date: Thu, 16 Jun 2022 14:19:23 +0000 Subject: [PATCH] Drop `pandas` requirement restriction (#174) (#176) * drop pandas requirement restriction * Add release notes Co-authored-by: Manoel Marques (cherry picked from commit 8e1753f757e10c846188bd4cf608f1895a63b986) Co-authored-by: Lukas Burgholzer --- .../notes/pandas-restriction-0965815429fd8877.yaml | 11 +++++++++++ requirements.txt | 4 ++-- 2 files changed, 13 insertions(+), 2 deletions(-) create mode 100644 releasenotes/notes/pandas-restriction-0965815429fd8877.yaml diff --git a/releasenotes/notes/pandas-restriction-0965815429fd8877.yaml b/releasenotes/notes/pandas-restriction-0965815429fd8877.yaml new file mode 100644 index 00000000..49243dbd --- /dev/null +++ b/releasenotes/notes/pandas-restriction-0965815429fd8877.yaml @@ -0,0 +1,11 @@ +--- +upgrade: + - | + Drop pandas minimum version requirement restriction and increase yfinance minimum version + to 0.1.70. + The bug that broke yfinance upon upgrading to pandas>=1.4.0 has been fixed + in the release version 0.1.70. + Related links: + + * https://github.com/ranaroussi/yfinance/releases/tag/0.1.70 + * https://github.com/ranaroussi/yfinance/issues/937 diff --git a/requirements.txt b/requirements.txt index 8b196cdd..576e3b5a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -6,6 +6,6 @@ psutil>=5 scikit-learn>=0.20.0 fastdtw setuptools>=40.1.0 -pandas<1.4.0 +pandas quandl -yfinance>=0.1.62 +yfinance>=0.1.70