Skip to content
This repository was archived by the owner on Jan 13, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion _unittests/ut_helpgen/data/myexample2.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@


"""
from ..subproject.myexample import myclass
from subproject.myexample import myclass


class myclass2 (myclass):
Expand Down
10 changes: 4 additions & 6 deletions _unittests/ut_pycode/test_pip_helper2.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,12 @@ def test_pip_show(self):
info = get_package_info("pandas")
# if "license" not in info:
# raise Exception(str(info))
if "version" not in info:
if "version" not in str(info):
raise Exception(str(info))

if sys.version_info[0] >= 3:
info = get_package_info("sphinx")
if "version" not in info:
raise Exception(str(info))
info = get_package_info("sphinx")
if "version" not in str(info):
raise Exception(str(info))

def test_pip_show_all(self):
fLOG(
Expand All @@ -40,7 +39,6 @@ def test_pip_show_all(self):
info = get_package_info(start=0, end=2)
df = pandas.DataFrame(info)
self.assertNotEmpty(info)
self.assertIsInstance(info[0], dict)

if __name__ == "__mahin__":
info = get_package_info()
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ sphinx-gallery
sphinxcontrib-imagesvg
sphinx_rtd_theme
tabulate
thebe
tqdm
traitlets>=5.0
unify
Expand Down