Skip to content

Commit c1f045d

Browse files
nealmcbdbieber
authored andcommitted
ipython<6.0 for google#57; fix broken links in guide.md (google#58)
* Fix broken links to using-cli.md (extra "doc/") * require ipython < 6.0 for python 2.7 compatibility
1 parent 8ea4229 commit c1f045d

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

doc/guide.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -699,12 +699,12 @@ The complete set of flags available is shown below, in the reference section.
699699

700700
| Using a CLI | Command | Notes
701701
| :------------- | :------------------------- | :---------
702-
| [Help](doc/using-cli.md#help-flag) | `command -- --help` |Show help and usage information for the command.
703-
| [REPL](doc/using-cli.md#interactive-flag) | `command -- --interactive` | Enter interactive mode.
704-
| [Separator](doc/using-cli.md#separator-flag) | `command -- --separator=X` | This sets the separator to `X`. The default separator is `-`.
705-
| [Completion](doc/using-cli.md#completion-flag) | `command -- --completion` | Generate a completion script for the CLI.
706-
| [Trace](doc/using-cli.md#trace-flag) | `command -- --trace` | Gets a Fire trace for the command.
707-
| [Verbose](doc/using-cli.md#verbose-flag) | `command -- --verbose` | Include private members in the output.
702+
| [Help](using-cli.md#help-flag) | `command -- --help` |Show help and usage information for the command.
703+
| [REPL](using-cli.md#interactive-flag) | `command -- --interactive` | Enter interactive mode.
704+
| [Separator](using-cli.md#separator-flag) | `command -- --separator=X` | This sets the separator to `X`. The default separator is `-`.
705+
| [Completion](using-cli.md#completion-flag) | `command -- --completion` | Generate a completion script for the CLI.
706+
| [Trace](using-cli.md#trace-flag) | `command -- --trace` | Gets a Fire trace for the command.
707+
| [Verbose](using-cli.md#verbose-flag) | `command -- --verbose` | Include private members in the output.
708708
_Note that flags are separated from the Fire command by an isolated `--` arg._
709709

710710

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
A library for automatically generating command line interfaces.""".strip()
3131

3232
DEPENDENCIES = [
33-
'ipython',
33+
'ipython<6.0',
3434
'six',
3535
]
3636

0 commit comments

Comments
 (0)