From 6a2106a20c3b07ce2f5b23d5efb68bb9fd5ecb98 Mon Sep 17 00:00:00 2001 From: Zhehao Zhang <15364519511@163.com> Date: Thu, 5 Jun 2025 11:18:39 +0800 Subject: [PATCH 1/2] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 10a8dcfa..b6c8756c 100644 --- a/README.md +++ b/README.md @@ -41,6 +41,7 @@ Using pandas datareader requires the following packages: - pandas>=1.5.3 - lxml - requests>=2.19.0 +- distutils (not included in standard library of Python 3.12 and above it, which can be solved by installing `setuptools`) Building the documentation additionally requires: From 1234970a020c06e076ad15fabd194b8e056da49c Mon Sep 17 00:00:00 2001 From: Zhehao Zhang <15364519511@163.com> Date: Thu, 5 Jun 2025 11:19:37 +0800 Subject: [PATCH 2/2] Update requirements.txt add a dependency in order to fix the lack of distutils. --- requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements.txt b/requirements.txt index 41ec4732..d47536ac 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,4 @@ lxml pandas>=1.5.3 requests>=2.19.0 +setuptools