-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* adopt sp-repo-review * adopt sp-repo-review * address typing * fix tests * restore tests location * fix report * fix tests * fix tests * set timeout * windows fix * try again * update typings
- Loading branch information
Showing
17 changed files
with
247 additions
and
170 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
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 |
---|---|---|
|
@@ -20,4 +20,4 @@ python: | |
build: | ||
os: ubuntu-22.04 | ||
tools: | ||
python: "3.11" | ||
python: "3.11" |
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 |
---|---|---|
@@ -1,15 +1,4 @@ | ||
import sys | ||
from ._version import __version__, version_info | ||
from .client import NotebookClient, execute | ||
|
||
from ._version import __version__, version_info # noqa # noqa | ||
from .client import NotebookClient, execute # noqa: F401 | ||
|
||
|
||
def _cleanup() -> None: | ||
pass | ||
|
||
|
||
# patch subprocess on Windows for python<3.7 | ||
# see https://bugs.python.org/issue37380 | ||
# the fix for python3.7: https://github.com/python/cpython/pull/15706/files | ||
if sys.platform == 'win32': | ||
pass | ||
__all__ = ["__version__", "version_info", "NotebookClient", "execute"] |
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
Oops, something went wrong.