Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1.1.4 #243

Merged
merged 26 commits into from
Jun 5, 2019
Merged

1.1.4 #243

merged 26 commits into from
Jun 5, 2019

Commits on Jun 4, 2019

  1. changing isinstance to issubclass

    the isinstance check `if isinstance(app.contents_manager_class, TextFileContentsManager):` will always fail because app.contents_manager_class is not an instance.  
    
    Changing this to `if issubclass(app.contents_manager_class, TextFileContentsManager):`  will allow others to extend.
    
    https://www.codevscolor.com/python-isinstance-issubclass/
    fool65c authored and mwouts committed Jun 4, 2019
    Configuration menu
    Copy the full SHA
    63b7935 View commit details
    Browse the repository at this point in the history
  2. add test with issubclass

    mwouts committed Jun 4, 2019
    Configuration menu
    Copy the full SHA
    27612c4 View commit details
    Browse the repository at this point in the history
  3. Starting work on 1.1.4

    mwouts committed Jun 4, 2019
    Configuration menu
    Copy the full SHA
    c1aad22 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    c7fc47c View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    2a21384 View commit details
    Browse the repository at this point in the history
  6. Version 1.1.4-rc0

    mwouts committed Jun 4, 2019
    Configuration menu
    Copy the full SHA
    ad19f61 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    7c4b027 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    0beb5f6 View commit details
    Browse the repository at this point in the history
  9. Test language==python

    Bash kernel also has argv[0]==python...
    mwouts committed Jun 4, 2019
    Configuration menu
    Copy the full SHA
    e7384ee View commit details
    Browse the repository at this point in the history
  10. Update version.py

    mwouts committed Jun 4, 2019
    Configuration menu
    Copy the full SHA
    0c0c03e View commit details
    Browse the repository at this point in the history
  11. Allow in place --set-kernel

    mwouts committed Jun 4, 2019
    Configuration menu
    Copy the full SHA
    e4844af View commit details
    Browse the repository at this point in the history
  12. jupytext --to script

    Fixes #240
    mwouts committed Jun 4, 2019
    Configuration menu
    Copy the full SHA
    c73150f View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    4ea31a6 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    8df463c View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    eb84c87 View commit details
    Browse the repository at this point in the history
  16. Update tests

    mwouts committed Jun 4, 2019
    Configuration menu
    Copy the full SHA
    02d4cd1 View commit details
    Browse the repository at this point in the history
  17. Update HISTORY.rst

    mwouts committed Jun 4, 2019
    Configuration menu
    Copy the full SHA
    f8a2311 View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    4082197 View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    841b3c8 View commit details
    Browse the repository at this point in the history
  20. Update HISTORY.rst

    mwouts committed Jun 4, 2019
    Configuration menu
    Copy the full SHA
    271b7b0 View commit details
    Browse the repository at this point in the history
  21. Configuration menu
    Copy the full SHA
    a4161ac View commit details
    Browse the repository at this point in the history
  22. CONTRIBUTING.md

    mwouts committed Jun 4, 2019
    Configuration menu
    Copy the full SHA
    9ae4053 View commit details
    Browse the repository at this point in the history
  23. Update requirements-dev.txt

    mwouts committed Jun 4, 2019
    Configuration menu
    Copy the full SHA
    be2bdb6 View commit details
    Browse the repository at this point in the history
  24. Update version.py

    mwouts committed Jun 4, 2019
    Configuration menu
    Copy the full SHA
    68c4baa View commit details
    Browse the repository at this point in the history
  25. Update HISTORY.rst

    mwouts committed Jun 4, 2019
    Configuration menu
    Copy the full SHA
    58ce39c View commit details
    Browse the repository at this point in the history
  26. pytest-xdist removed from requirements-dev

    as it fails on travis
    mwouts committed Jun 4, 2019
    Configuration menu
    Copy the full SHA
    530b168 View commit details
    Browse the repository at this point in the history