From 4d415bff2beff57bfaca93d0ab1563b852afb4ca Mon Sep 17 00:00:00 2001 From: James Reed Date: Wed, 4 Sep 2019 17:41:03 -0700 Subject: [PATCH] Add requests as a legit dependency (#25596) Summary: Pull Request resolved: https://github.com/pytorch/pytorch/pull/25596 Giving up on trying to limit this to just a py2 dependency Test Plan: Imported from OSS Differential Revision: D17171063 Pulled By: jamesr66a fbshipit-source-id: 5df35fd128f3051dd9c6709f7d45323fedc12e65 --- README.md | 2 +- caffe2/requirements.txt | 1 + requirements.txt | 3 ++- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index cb8f8305d8e..418a7603f4e 100644 --- a/README.md +++ b/README.md @@ -169,7 +169,7 @@ If you are building for NVIDIA's Jetson platforms (Jetson Nano, TX1, TX2, AGX Xa Common ``` -conda install numpy ninja pyyaml mkl mkl-include setuptools cmake cffi typing +conda install numpy ninja pyyaml mkl mkl-include setuptools cmake cffi typing requests ``` On Linux diff --git a/caffe2/requirements.txt b/caffe2/requirements.txt index 07fd95b7258..7c0367da1d8 100644 --- a/caffe2/requirements.txt +++ b/caffe2/requirements.txt @@ -1,4 +1,5 @@ numpy enum34 pyyaml +requests typing diff --git a/requirements.txt b/requirements.txt index dcfc535dc40..f8388b06748 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,7 @@ future numpy pyyaml +requests setuptools six -typing +typing \ No newline at end of file