2024-11-11 08:29:31 by Thomas Klausner | Files touched by this commit (862) |
Log message:
py-*: remove unused tool dependency
py-setuptools includes the py-wheel functionality nowadays
|
2024-10-29 21:11:49 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message:
py-ipython: updated to 8.29.0
IPython 8.29
Medium release for this end of october;
- Misc Python 3.13 compatibility
- Add a ``uv`` line magic
- Add support for WEBP to ``IPython.display.Image``.
- And many more bugfixes and quality of life improvements.
|
2024-10-17 10:04:16 by Thomas Klausner | Files touched by this commit (1) |
Log message:
py-ipython: fix PLIST
|
2024-10-14 08:46:10 by Thomas Klausner | Files touched by this commit (325) |
Log message:
*: clean-up after python38 removal
|
2024-09-03 10:33:10 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-ipython: updated to 8.27.0
IPython 8.27
New release of IPython after a month off (not enough changes). We can see a few
important changes for this release.
- autocall was beeing call getitem, :ghpull:`14486`
- Only copy files in startup dir if we just created it. :ghpull:`14497`
- Fix some tests on Python 3.13 RC1 :ghpull:`14504`; this one I guess make this
the first IPython release officially compatible with Python 3.13; you will
need the most recent ``executing`` and ``stack_data``, we won't pin to avoid
forcing user of older Python version to upgrade.
|
2023-11-27 16:26:13 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-ipython: updated to 8.18.1
IPython 8.18 and 8.18.1
-----------------------
8.18.1 is identical to 8.18 but pin ``prompt_toolkit`` to greater than ``3.0.41``
Small release of IPython that fixes a small number of inconveniences.
- :ghpull:`14251` Fix a memory leak in qt event loop integration by setting
the Loop parent to None.
- :ghpull:`14252` Pickleshare was made an optional dependency in 8.17, this
leads to warnings in some installations when using modules completions. The
warning has been silenced.
- :ghpull:`14241` Update event loop code for compatibility with more recent
``prompt_toolkit`` due to deprecations in Python 3.12.
- :ghpull:`14245` Fix doc example on Pygments styles
- :ghpull:`14238` Remove dependency on app_nope, this is actually only a
dependency of IPykernel.
|
2023-11-26 11:05:41 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-ipython: updated to 8.18.0
IPython 8.18
------------
Small release of IPython that fixes a small number of inconveniences.
- :ghpull:`14251` Fix a memory leak in qt event loop integration by setting
the Loop parent to None.
- :ghpull:`14252` Pickleshare was made an optional dependency in 8.17, this
leads to warnings in some installations when using modules completions. The
warning has been silenced.
- :ghpull:`14241` Update event loop code for compatibility with more recent
``prompt_toolkit`` due to deprecations in Python 3.12.
- :ghpull:`14245` Fix doc example on Pygments styles
- :ghpull:`14238` Remove dependency on app_nope, this is actually only a
dependency of IPykernel.
|
2023-11-02 10:17:35 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message:
py-ipython: updated to 8.17.2
IPython 8.17, 8.17.1
--------------------
Medium-sized release of IPython that includes some cleanup (backcall, python2 \
leftovers)
and some refactoring improvements (typing, pathlib) and a fix on completion.
- remove backcall dependency
- make pickleshare dependency optional
- support completion based on type annotations of calls
Reverted in 8.17.1:
- remove support for python 2 in lexers (reverted in 8.17.1 as it is imported \
by qtconsole/spyder)
Mamba and Micromamba magic
~~~~~~~~~~~~~~~~~~~~~~~~~~
In addition to the conda command to manage conda environment, mamba and
micromamba can now be used using the corresponding magic in IPython.
Since these commands are compatible with conda, they are following the
same logic.
These two magic require to have the corresponding commands available
either in the conda environment or system wide.
|
2023-10-02 20:58:24 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-ipython: updated to 8.16.1
This PR is in 8.16.0 but reverted in 8.16.1, we'll rework the fix for 8.17
- Fix an error where semicolon would not suppress output.
|
2023-09-29 15:40:02 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-ipython: updated to 8.16.0
IPython 8.16
------------
Small double release of IPython (with the 8.12.3 release notes just below).
Mostly bug fixes and cleanups, and type annotations. Of interest for users:
- Fix a bug of the new iPdb chained traceback where some
Exception would not have any traceback. (see upstream fix in CPython for more
details).
- Fix an error where semicolon would not suppress output.
- Fix case with spurious message about event loops when using
matplotlib.
|