Skip to content

Commit cc2118b

Browse files
committed
removing old ipython version recommendation
1 parent f24365a commit cc2118b

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

piccolo/apps/playground/commands/run.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,8 +132,7 @@ def run(
132132
import IPython
133133
except ImportError:
134134
print(
135-
"Install iPython using `pip install ipython==7.6.1` to use this "
136-
"feature."
135+
"Install iPython using `pip install ipython` to use this feature."
137136
)
138137
sys.exit(1)
139138

piccolo/apps/shell/commands/run.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ def start_ipython_shell(**tables: t.Dict[str, t.Type[Table]]):
1010
import IPython
1111
except ImportError:
1212
print(
13-
"Install iPython using `pip install ipython==7.6.1` to use this "
14-
"feature."
13+
"Install iPython using `pip install ipython` to use this feature."
1514
)
1615
sys.exit(1)
1716

0 commit comments

Comments
 (0)