./devel/py-jupyter_core, Jupyter core package

[ CVSweb ] [ Homepage ] [ RSS ] [ Required by ] [ Add to tracker ]


Branch: CURRENT, Version: 5.3.0, Package name: py310-jupyter_core-5.3.0, Maintainer: pkgsrc-users

Jupyter core package. A base package on which Jupyter projects rely.


Required to run:
[devel/py-setuptools] [devel/py-traitlets] [lang/python37]

Required to build:
[pkgtools/cwrappers]

Master sites:

Filesize: 81.942 KB

Version history: (Expand)


CVS history: (Expand)


   2023-03-17 18:21:20 by Adam Ciarcinski | Files touched by this commit (3) | Package updated
Log message:
py-jupyter_core: updated to 5.3.0

5.3.0

Bugs fixed
- Fix pywin32 version constraint

Maintenance and upkeep improvements
- Add license
- Support platformdirs 3
   2023-02-10 11:51:25 by Adam Ciarcinski | Files touched by this commit (2) | Package updated
Log message:
py-jupyter_core: updated to 5.2.0

5.2.0

Enhancements made

- Set up shell command-line tab-completion for jupyter and subcommands

Maintenance and upkeep improvements

- Add more linting
   2022-11-28 19:06:55 by Adam Ciarcinski | Files touched by this commit (3) | Package updated
Log message:
py-jupyter_core: updated to 5.1.0

5.1.0

Enhancements made

- Add run_sync and ensure_async functions

Maintenance and upkeep improvements

- Add more path tests
- Clean up workflows and add badges
- CI Cleanup

Documentation improvements

- Clean up workflows and add badges
   2022-11-22 11:25:01 by Adam Ciarcinski | Files touched by this commit (1)
Log message:
py-jupyter_core: needs hatchling to install
   2022-11-22 11:18:06 by Adam Ciarcinski | Files touched by this commit (4) | Package updated
Log message:
py-jupyter_core: updated to 5.0.0

5.0.0

Major Changes

Prefer Environment Level Configuration

We now make the assumption that if we are running in a virtual environment, we \ 
should prioritize the environment-level `sys.prefix` over the user-level paths. \ 
Users can opt out of this behavior by setting `JUPYTER_PREFER_ENV_PATH`, which \ 
takes precedence over our autodetection.

Migrate to Standard Platform Directories

In version 5, we introduce a `JUPYTER_PLATFORM_DIRS` environment variable to opt \ 
in to using more appropriate platform-specific directories.  We raise a \ 
deprecation warning if the variable is not set.  In version 6,  \ 
`JUPYTER_PLATFORM_DIRS` will be opt-out.  In version 7, we will remove the \ 
environment variable checks and old directory logic.

Drop Support for Python 3.7

We are dropping support for Python 3.7 ahead of its official end of life, to \ 
reduce maintenance burden as we add support for Python 3.11.

Enhancements made

- Use platformdirs for path locations
- Try to detect if we are in a virtual environment and change path precedence \ 
accordingly

Bugs fixed

- Add current working directory as first config path
- Fix inclusion of jupyter file and check in CI

Maintenance and upkeep improvements

- Bump github/codeql-action from 1 to 2
- Bump actions/checkout from 2 to 3
- Add dependabot
- Adopt jupyter releaser
- Add more typing
- Require Python 3.8+
- Use hatch backend
- Switch to flit build backend
- is_hidden: Use normalized paths

Documentation

- Update broken link to `Contributing` guide
   2022-04-19 13:34:27 by Adam Ciarcinski | Files touched by this commit (4) | Package updated
Log message:
py-jupyter_core: updated to 4.10.0

4.10.0
* Include all files from ``jupyter_core``.
* Add project URLs to ``setup.cfg``.
* Set up pre-commit.
* Add flake8 and mypy settings.
* Clean up CI.
   2022-02-16 10:53:20 by Adam Ciarcinski | Files touched by this commit (2) | Package updated
Log message:
py-jupyter_core: updated to 4.9.2

4.9.2

set proper sys.argv[0] for subcommand
Add explicit encoding in open calls
jupyter_config_dir - reorder home_dir initialization
   2022-01-27 10:18:53 by Adam Ciarcinski | Files touched by this commit (2) | Package updated
Log message:
py-jupyter_core: updated to 4.9.1

4.9.1

- Add a workaround for virtualenv for getting the user site directory.

4.9.0

- Add Python site user base subdirectories to config and data user-level paths \ 
if ``site.ENABLE_USER_SITE`` is True. One way to disable these directory \ 
additions is to set the ``PYTHONNOUSERSITE`` environment variable. These \ 
locations can be customized by setting the ``PYTHONUSERBASE`` environment \ 
variable.

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

4.8.0

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
- Return canonical path when using ``%APPDATA%`` on Windows
- Print full usage on missing or invalid commands
- Remove dependency on ``pywin32`` package on PyPy
- Update packages listed in ``jupyter --version``
- Inherit base aliases/flags from traitlets Application, including \ 
``--show-config`` from traitlets 5
- Trigger warning when trying to check hidden file status on PyPy