@@ -79,8 +79,6 @@ def default(session, install_extras=True):
7979 install_target = "."
8080 session .install ("-e" , install_target , "-c" , constraints_path )
8181
82- session .install ("ipython" , "-c" , constraints_path )
83-
8482 # Run py.test against the unit tests.
8583 session .run (
8684 "py.test" ,
@@ -119,7 +117,6 @@ def unit_noextras(session):
119117def mypy (session ):
120118 """Run type checks with mypy."""
121119 session .install ("-e" , ".[all]" )
122- session .install ("ipython" )
123120 session .install (MYPY_VERSION )
124121
125122 # Just install the dependencies' type info directly, since "mypy --install-types"
@@ -138,7 +135,6 @@ def pytype(session):
138135 # https://github.com/googleapis/python-bigquery/issues/655
139136 session .install ("attrs==20.3.0" )
140137 session .install ("-e" , ".[all]" )
141- session .install ("ipython" )
142138 session .install (PYTYPE_VERSION )
143139 session .run ("pytype" )
144140
@@ -180,7 +176,6 @@ def system(session):
180176 else :
181177 extras = "[all]"
182178 session .install ("-e" , f".{ extras } " , "-c" , constraints_path )
183- session .install ("ipython" , "-c" , constraints_path )
184179
185180 # Run py.test against the system tests.
186181 session .run ("py.test" , "--quiet" , os .path .join ("tests" , "system" ), * session .posargs )
@@ -355,7 +350,7 @@ def blacken(session):
355350def docs (session ):
356351 """Build the docs."""
357352
358- session .install ("ipython" , " recommonmark" , "sphinx==4.0.1" , "sphinx_rtd_theme" )
353+ session .install ("recommonmark" , "sphinx==4.0.1" , "sphinx_rtd_theme" )
359354 session .install ("google-cloud-storage" )
360355 session .install ("-e" , ".[all]" )
361356
0 commit comments