##// END OF EJS Templates
Compatibility with traitlets 5.0....
Matthias Bussonnier -
Show More
@@ -41,7 +41,7 b' install:'
41 41 fi
42 42 - pip install -e file://$PWD#egg=ipython[test] --upgrade
43 43 - pip install trio curio --upgrade --upgrade-strategy eager
44 - pip install pytest 'matplotlib !=3.2.0' mypy
44 - pip install 'pytest<6' 'matplotlib !=3.2.0' mypy
45 45 - pip install codecov check-manifest --upgrade
46 46 - pip install mypy
47 47 - |
@@ -432,7 +432,7 b' class BaseFormatter(Configurable):'
432 432 """Add a format function for a given type.
433 433
434 434 Parameters
435 -----------
435 ----------
436 436 typ : type or '__module__.__name__' string for a type
437 437 The class of the object that will be formatted using `func`.
438 438 func : callable
@@ -198,7 +198,7 b' def ipexec(fname, options=None, commands=()):'
198 198 ipython_cmd = get_ipython_cmd()
199 199 # Absolute path for filename
200 200 full_fname = os.path.join(test_dir, fname)
201 full_cmd = ipython_cmd + cmdargs + [full_fname]
201 full_cmd = ipython_cmd + cmdargs + ['--', full_fname]
202 202 env = os.environ.copy()
203 203 # FIXME: ignore all warnings in ipexec while we have shims
204 204 # should we keep suppressing warnings here, even after removing shims?
General Comments 0
You need to be logged in to leave comments. Login now