Changes in jupyter-core¶
4.10 —
4.10.0¶
Include all files from
jupyter_core. (PR #253)Add project URLs to
setup.cfg. (PR #254)Set up pre-commit. (PR #255)
Add flake8 and mypy settings. (PR #256)
Clean up CI. (PR #258)
4.9¶
4.9.2¶
4.9.1¶
Add a workaround for virtualenv for getting the user site directory. (PR #247)
4.9.0¶
See the jupyter_core 4.9 milestone on GitHub for the full list of pull requests and issues closed.
Add Python site user base subdirectories to config and data user-level paths if
site.ENABLE_USER_SITEis True. One way to disable these directory additions is to set thePYTHONNOUSERSITEenvironment variable. These locations can be customized by setting thePYTHONUSERBASEenvironment variable. (PR #242)
4.8¶
4.8.2¶
jupyter_core 4.8.1 was released the same day as 4.8.0 and also included the fix below for the Windows tests. Unfortunately, the 4.8.1 release commit and tag were not pushed to GitHub. We are releasing 4.8.2 so we have a commit and tag in version control.
Fix windows test regression (PR #240)
4.8.0¶
See the jupyter_core 4.8 milestone on GitHub for the full list of pull requests and issues closed.
jupyter-core now has experimental support for PyPy (Python 3.7). Some features are known not to work due to limitations in PyPy, such as hidden file detection on Windows.
Print an error message instead of an exception when a command is not found (PR #218)
Return canonical path when using
%APPDATA%on Windows (PR #222)Print full usage on missing or invalid commands (PR #225)
Remove dependency on
pywin32package on PyPy (PR #230)Update packages listed in
jupyter --version(PR #232)Inherit base aliases/flags from traitlets Application, including
--show-configfrom traitlets 5 (PR #233)Trigger warning when trying to check hidden file status on PyPy (PR #238)
4.7¶
4.7.1¶
Allow creating user to delete secure file (PR #213)
4.7.0¶
See the jupyter_core 4.7 milestone on GitHub for the full list of pull requests and issues closed.
Add a new
JUPYTER_PREFER_ENV_PATHvariable, which can be set to switch the order of the environment-level path and the user-level path in the Jupyter path hierarchy (e.g.,jupyter --paths). It is considered set if it is a value that is not one of ‘no’, ‘n’, ‘off’, ‘false’, ‘0’, or ‘0.0’ (case insensitive). If you are running Jupyter in multiple virtual environments as the same user, you will likely want to set this environment variable.Drop Python 2.x and 3.5 support, as they have reached end of life.
Add Python 3.9 builds to testing, and expand testing to cover Windows, macOS, and Linux platforms.
jupyter --paths --debugnow explains the environment variables that affect the current path list.Update the file hidden check on Windows to use new Python features rather than ctypes directly.
Add conda environment information in
jupyter troubleshoot.Update
_version.version_infoand_version.__version__to follow Python conventions.
4.6¶
4.6.3¶
Changed windows secure_write path to skip all filesystem permission checks when running in insecure mode. Too many exception paths existed for mounted file systems to reliably try to set them before opting out with the insecure write pattern.
4.6.2¶
Add ability to allow insecure writes with JUPYTER_ALLOW_INSECURE_WRITES environement variable (PR #182).
Docs typo and build fixes
Added python 3.7 and 3.8 builds to testing
4.6.1¶
4.6.0¶
Unicode characters existing in the user’s home directory name are properly handled (PR #131).
mockis now only required for testing on Python 2 (PR #157).Deprecation warnings relative to
_runtime_dir_changedare no longer produced (PR #158).The
scriptsdirectory relative to the current python environment is now appended to the search directory for subcommands (PR #162).Some utility functions (
exists(),is_hidden(),secure_write()) have been moved fromjupyter_clientandjupyter_servertojupyter_core(PR #163).Fix error on Windows when setting private permissions (PR #166).
4.5¶
4.5.0¶
jupyter --versionnow tries to show the version number of various other installed Jupyter packages, not justjupyter_core(PR #136). This will hopefully make it clearer that there are various packages with their own version numbers.Allow a
JUPYTER_CONFIG_PATHenvironment variable to specify a search path of additional locations for config (PR #139).jupyter subcommandno longer modifies thePATHenvironment variable when it runsjupyter-subcommand(PR #148).Jupyter’s ‘runtime’ directory no longer uses
XDG_RUNTIME_DIR(PR #143). While it has some attractive properties, it has led to various problems; see the pull request for details.Fix
JupyterAppto respect theraise_config_file_errorstraitlet (PR #149).Various improvements to the bash completion scripts in this repository (PR #125, PR #126).
The
setup.pyscript now always uses setuptools, like most other Jupyter projects (PR #147).The LICENSE file is included in wheels (PR #133).
4.4¶
4.4.0¶
jupyter troubleshootgets the list of packages from the Python environment it’s in, by usingsys.executableto callpip list(PR #104).Added utility function
ensure_dir_exists, and switched to using it over the one from ipython_genutils, which does permissions wrong (PR #113).Avoid creating the
~/.ipythondirectory when checking if it exists for config migration (PR #118).Fix mistaken description in zsh completions (PR #98).
Fix subcommand tests on Windows (PR #103).
The README now describes how to work on
jupyter_coreand build the docs (PR #110).Fix a broken link to a release in the docs (PR #109).
4.3¶
4.3.0¶
Add JUPYTER_NO_CONFIG environment variable for disabling all Jupyter configuration.
More detailed error message when failing to launch subcommands.
4.2¶
4.2.1¶
Fix error message on Windows when subcommand not found.
Correctly display PATH in
jupyter troubleshooton Windows.
4.2.0¶
Make jupyter directory top priority in search path for subcommands, so that jupyter-subcommand next to jupyter will always be picked if present.
Avoid using
shell=Truefor subcommand dispatch on Windows.
4.1¶
4.1.1¶
Include symlink directory and real location on subcommand PATH when
jupyteris a symlink.
4.1.0¶
Add
jupyter.pymodule, so that python -m jupyter always works.Add prototype
jupyter troubleshootcommand for displaying environment info.Ensure directory containing
jupyterexecutable is included when dispatching subcommands.Unicode fixes for Legacy Python.
4.0¶
4.0.6¶
fix typo preventing migration when custom.css is missing
4.0.5¶
fix subcommands on Windows (yes, again)
fix migration when custom.js/css are not present
4.0.4¶
fix subcommands on Windows (again)
ensure
jupyter --versionoutputs to stdout
4.0.3¶
setuptools fixes needed to run on Windows
4.0.2¶
fixes for jupyter-migrate
4.0.1¶
This is the first release of the jupyter-core package.