@@ -79,8 +79,6 @@ def default(session, install_extras=True):
|
79 | 79 | install_target = "."
|
80 | 80 | session.install("-e", install_target, "-c", constraints_path)
|
81 | 81 |
|
82 |
| -session.install("ipython", "-c", constraints_path) |
83 |
| - |
84 | 82 | # Run py.test against the unit tests.
|
85 | 83 | session.run(
|
86 | 84 | "py.test",
|
@@ -119,7 +117,6 @@ def unit_noextras(session):
|
119 | 117 | def mypy(session):
|
120 | 118 | """Run type checks with mypy."""
|
121 | 119 | session.install("-e", ".[all]")
|
122 |
| -session.install("ipython") |
123 | 120 | session.install(MYPY_VERSION)
|
124 | 121 |
|
125 | 122 | # Just install the dependencies' type info directly, since "mypy --install-types"
|
@@ -138,7 +135,6 @@ def pytype(session):
|
138 | 135 | # https://.com/googleapis/python-bigquery/issues/655
|
139 | 136 | session.install("attrs==20.3.0")
|
140 | 137 | session.install("-e", ".[all]")
|
141 |
| -session.install("ipython") |
142 | 138 | session.install(PYTYPE_VERSION)
|
143 | 139 | session.run("pytype")
|
144 | 140 |
|
@@ -180,7 +176,6 @@ def system(session):
|
180 | 176 | else:
|
181 | 177 | extras = "[all]"
|
182 | 178 | session.install("-e", f".{extras}", "-c", constraints_path)
|
183 |
| -session.install("ipython", "-c", constraints_path) |
184 | 179 |
|
185 | 180 | # Run py.test against the system tests.
|
186 | 181 | session.run("py.test", "--quiet", os.path.join("tests", "system"), *session.posargs)
|
@@ -355,7 +350,7 @@ def blacken(session):
|
355 | 350 | def docs(session):
|
356 | 351 | """Build the docs."""
|
357 | 352 |
|
358 |
| -session.install("ipython", "recommonmark", "sphinx==4.0.1", "sphinx_rtd_theme") |
| 353 | +session.install("recommonmark", "sphinx==4.0.1", "sphinx_rtd_theme") |
359 | 354 | session.install("google-cloud-storage")
|
360 | 355 | session.install("-e", ".[all]")
|
361 | 356 |
|
|
0 commit comments