-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added version 5.2.5: retrived and tweaked PL 126 about dealing with s…
…htab package
- Loading branch information
Showing
5 changed files
with
15 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
"""\nplotext plots directly on terminal""" | ||
|
||
__name__ = "plotext" | ||
__version__ = "5.2.4" | ||
__version__ = "5.2.5" | ||
|
||
from ._core import * | ||
from .plotext_cli import build_parser |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# added by user @Freed-Wu as a replacement for package shtab if not present and in particular its method add_argument_to | ||
|
||
FILE = None | ||
DIRECTORY = DIR = None | ||
|
||
def add_argument_to(parser, *args, **kwargs): | ||
from argparse import Action | ||
Action.complete = None | ||
return parser |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ | |
author = "Savino Piccolomo", | ||
author_email = "[email protected]", | ||
name = 'plotext', | ||
version='5.2.4', | ||
version='5.2.5', | ||
description = 'plotext plots directly on terminal', | ||
long_description = README, | ||
long_description_content_type = "text/markdown", | ||
|