From 0722ce1207bf41352e4c762e13201bbda6b80749 Mon Sep 17 00:00:00 2001 From: Edward Burnell Date: Tue, 19 Oct 2021 12:23:14 -0400 Subject: [PATCH 1/2] minimum ad version --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index f58b55653..6bb8d8eb4 100644 --- a/setup.py +++ b/setup.py @@ -47,7 +47,7 @@ url="https://www.github.com/convexengineering/gpkit", python_requires=">=3.5.2", install_requires=["numpy >= 1.16.4", "pint >= 0.8.1", - "scipy", "ad", "cvxopt >= 1.1.8"], + "scipy", "ad >= 1.3.2", "cvxopt >= 1.1.8"], version="1.0.0", packages=["gpkit", "gpkit.tools", "gpkit.interactive", "gpkit.constraints", "gpkit.nomials", "gpkit.tests", "gpkit.solvers"], From c085a79db1524079733e4537e479e0bb284ce8c6 Mon Sep 17 00:00:00 2001 From: Edward Burnell Date: Tue, 19 Oct 2021 12:30:18 -0400 Subject: [PATCH 2/2] require plotly, closes #1559 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 6bb8d8eb4..9087ca207 100644 --- a/setup.py +++ b/setup.py @@ -46,7 +46,7 @@ author_email="gpkit@mit.edu", url="https://www.github.com/convexengineering/gpkit", python_requires=">=3.5.2", - install_requires=["numpy >= 1.16.4", "pint >= 0.8.1", + install_requires=["numpy >= 1.16.4", "pint >= 0.8.1", "plotly", "scipy", "ad >= 1.3.2", "cvxopt >= 1.1.8"], version="1.0.0", packages=["gpkit", "gpkit.tools", "gpkit.interactive", "gpkit.constraints",