Changelog
### 22.10.0
```
Highlights
- Runtime support for Python 3.6 has been removed. Formatting 3.6 code will still be
supported until further notice.
Stable style
- Fix a crash when ` fmt: on` is used on a different block level than ` fmt: off`
(3281)
Preview style
- Fix a crash when formatting some dicts with parenthesis-wrapped long string keys
(3262)
Configuration
- `.ipynb_checkpoints` directories are now excluded by default (3293)
- Add `--skip-source-first-line` / `-x` option to ignore the first line of source code
while formatting (3299)
Packaging
- Executables made with PyInstaller will no longer crash when formatting several files
at once on macOS. Native x86-64 executables for macOS are available once again.
(3275)
- Hatchling is now used as the build backend. This will not have any effect for users
who install Black with its wheels from PyPI. (3233)
- Faster compiled wheels are now available for CPython 3.11 (3276)
_Blackd_
- Windows style (CRLF) newlines will be preserved (3257).
Integrations
- Vim plugin: add flag (`g:black_preview`) to enable/disable the preview style (3246)
- Update GitHub Action to support formatting of Jupyter Notebook files via a `jupyter`
option (3282)
- Update GitHub Action to support use of version specifiers (e.g. `<23`) for Black
version (3265)
```
Links
- PyPI: https://pypi.org/project/black
- Changelog: https://pyup.io/changelogs/black/
Changelog
### 6.5.0
```
--------------------------
- The JSON report now includes details of which branches were taken, and which
are missing for each file. Thanks, Christoph Blessing (`pull 1438`_). Closes
`issue 1425`_.
- Starting with coverage.py 6.2, ``class`` statements were marked as a branch.
This wasn't right, and has been reverted, fixing `issue 1449`_. Note this
will very slightly reduce your coverage total if you are measuring branch
coverage.
- Packaging is now compliant with `PEP 517`_, closing `issue 1395`_.
- A new debug option ``--debug=pathmap`` shows details of the remapping of
paths that happens during combine due to the ``[paths]`` setting.
- Fix an internal problem with caching of invalid Python parsing. Found by
OSS-Fuzz, fixing their `bug 50381`_.
.. _bug 50381: https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=50381
.. _PEP 517: https://peps.python.org/pep-0517/
.. _issue 1395: https://github.com/nedbat/coveragepy/issues/1395
.. _issue 1425: https://github.com/nedbat/coveragepy/issues/1425
.. _pull 1438: https://github.com/nedbat/coveragepy/pull/1438
.. _issue 1449: https://github.com/nedbat/coveragepy/issues/1449
.. _changes_6-4-4:
```
Links
- PyPI: https://pypi.org/project/coverage
- Changelog: https://pyup.io/changelogs/coverage/
- Repo: https://github.com/nedbat/coveragepy
Changelog
### 4.2.3
```
What’s Changed
Continuous Integration
* Disable install check from release workflow (236) maread99
```
### 4.2.2
```
NB github release 4.2.2 was not released to PyPI. The below changes were incorporated into PyPI release 4.2.3.
What’s Changed
Continuous Integration
* Revert (partially) release workflow (235) maread99
```
### 4.2.1
```
NB github release 4.2.1 was not released to PyPI. The below changes were incorporated in PyPI release 4.2.3.
What’s Changed
Calendar Updates
* XLON: add Queen Elizabeth II funeral day 2022-09-12 (230) monkeyusage
* XSHG: Added 2022-10-06 and 2022-10-07 as market holidays (228) philiptromans
* XASX: Added National Day of Mourning for Her Majesty the Queen (232) philiptromans
Continuous Integration
* Update release workflow (234) maread99
Maintenance
* Update dependencies (227) maread99
* Bump actions/cache from 3.0.7 to 3.0.8 (226) dependabot
```
Links
- PyPI: https://pypi.org/project/exchange-calendars
- Changelog: https://pyup.io/changelogs/exchange-calendars/
Changelog
### 4.38.0
```
----------------------------
- [varLib.instancer] Added support for L4 instancing, i.e. moving the default value of
an axis while keeping it variable. Thanks Behdad! (2728, 2861).
It's now also possible to restrict an axis min/max values beyond the current default
value, e.g. a font wght has min=100, def=400, max=900 and you want a partial VF that
only varies between 500 and 700, you can now do that.
You can either specify two min/max values (wght=500:700), and the new default will be
set to either the minimum or maximum, depending on which one is closer to the current
default (e.g. 500 in this case). Or you can specify three values (e.g. wght=500:600:700)
to specify the new default value explicitly.
- [otlLib/featureVars] Set a few Count values so one doesn't need to compile the font
to update them (2860).
- [varLib.models] Make extrapolation work for 2-master models as well where one master
is at the default location (2843, 2846).
Add optional extrapolate=False to normalizeLocation() (2847, 2849).
- [varLib.cff] Fixed sub-optimal packing of CFF2 deltas by no longer rounding them to
integer (2838).
- [scaleUpem] Calculate numShorts in VarData after scale; handle CFF hintmasks (2840).
```
### 4.37.4
```
----------------------------
- [subset] Keep nameIDs used by CPAL palette entry labels (2837).
- [varLib] Avoid negative hmtx values when creating font from variable CFF2 font (2827).
- [instancer] Don't prune stat.ElidedFallbackNameID (2828).
- [unicodedata] Update Scripts/Blocks to Unicode 15.0 (2833).
```
### 4.37.3
```
----------------------------
- Fix arguments in calls to (glyf) glyph.draw() and drawPoints(), whereby offset wasn't
correctly passed down; this fix also exposed a second bug, where lsb and tsb were not
set (2824, 2825, adobe-type-tools/afdko1560).
```
### 4.37.2
```
----------------------------
- [subset] Keep CPAL table and don't attempt to prune unused color indices if OT-SVG
table is present even if COLR table was subsetted away; OT-SVG may be referencing the
CPAL table; for now we assume that's the case (2814, 2815).
- [varLib.instancer] Downgrade GPOS/GSUB version if there are no more FeatureVariations
after instancing (2812).
- [subset] Added ``--no-lazy`` to optionally load fonts eagerly (mostly to ease
debugging of table lazy loading, no practical effects) (2807).
- [varLib] Avoid building empty COLR.DeltaSetIndexMap with only identity mappings (2803).
- [feaLib] Allow multiple value record types (by promoting to the most general format)
within the same PairPos subtable; e.g. this allows variable and non variable kerning
rules to share the same subtable. This also fixes a bug whereby some kerning pairs
would become unreachable while shapiong because of premature subtable splitting (2772, 2776).
- [feaLib] Speed up ``VarScalar`` by caching models for recurring master locations (2798).
- [feaLib] Optionally cythonize ``feaLib.lexer``, speeds up parsing FEA a bit (2799).
- [designspaceLib] Avoid crash when handling unbounded rule conditions (2797).
- [post] Don't crash if ``post`` legacy format 1 is malformed/improperly used (2786)
- [gvar] Don't be "lazy" (load all glyph variations up front) when TTFont.lazy=False (2771).
- [TTFont] Added ``normalizeLocation`` method to normalize a location dict from the
font's defined axes space (also known as "user space") into the normalized (-1..+1)
space. It applies ``avar`` mapping if the font contains an ``avar`` table (2789).
- [TTVarGlyphSet] Support drawing glyph instances from CFF2 variable glyph set (2784).
- [fontBuilder] Do not error when building cmap if there are zero code points (2785).
- [varLib.plot] Added ability to plot a variation model and set of accompaning master
values corresponding to the model's master locations into a pyplot figure (2767).
- [Snippets] Added ``statShape.py`` script to draw statistical shape of a glyph as an
ellips (requires pycairo) (baecd88).
- [TTVarGlyphSet] implement drawPoints natively, avoiding going through
SegmentToPointPen (2778).
- [TTVarGlyphSet] Fixed bug whereby drawing a composite glyph multiple times, its
components would shif; needed an extra copy (2774).
```
Links
- PyPI: https://pypi.org/project/fonttools
- Changelog: https://pyup.io/changelogs/fonttools/
- Repo: http://github.com/fonttools/fonttools
Changelog
### 6.56.3
```
-------------------
This patch teaches :func:`~hypothesis.strategies.text` to rewrite a few more
filter predicates (:issue:`3134`). You're unlikely to notice any change.
```
### 6.56.2
```
-------------------
This patch updates our vendored `list of top-level domains <https://www.iana.org/domains/root/db>`__,
which is used by the provisional :func:`~hypothesis.provisional.domains` strategy, and fixes some
incorrect examples in the docs for :func:`~hypothesis.extra.numpy.mutually_broadcastable_shapes`.
```
### 6.56.1
```
-------------------
This patch improves the error message when Hypothesis detects "flush to zero"
mode for floating-point: we now report which package(s) enabled this, which
can make debugging much easier. See :issue:`3458` for details.
```
### 6.56.0
```
-------------------
This release defines ``__bool__()`` on :class:`~hypothesis.strategies.SearchStrategy`.
It always returns ``True``, like before, but also emits a warning to help with
cases where you intended to draw a value (:issue:`3463`).
```
### 6.55.0
```
-------------------
In preparation for `future versions of the Array API standard
<https://data-apis.org/array-api/latest/future_API_evolution.html>`__,
:func:`~hypothesis.extra.array_api.make_strategies_namespace` now accepts an
optional ``api_version`` argument, which determines the version conformed to by
the returned strategies namespace. If ``None``, the version of the passed array
module ``xp`` is inferred.
This release also introduces :func:`xps.real_dtypes`. This is currently
equivalent to the existing :func:`xps.numeric_dtypes` strategy, but exists
because the latter is expected to include complex numbers in the next version of
the standard.
```
### 6.54.6
```
-------------------
If multiple explicit examples (from :func:`example() <hypothesis.example>`)
raise a Skip exception, for consistency with generated examples we now re-raise
the first instead of collecting them into an ExceptionGroup (:issue:`3453`).
```
Links
- PyPI: https://pypi.org/project/hypothesis
- Changelog: https://pyup.io/changelogs/hypothesis/
- Homepage: https://hypothesis.works
Changelog
### 3.4
```
++++++++++++++++
- Update to Unicode 15.0.0
- Migrate to pyproject.toml for build information (PEP 621)
- Correct another instance where generic exception was raised instead of
IDNAError for malformed input
- Source distribution uses zeroized file ownership for improved
reproducibility
Thanks to Seth Michael Larson for contributions to this release.
```
Links
- PyPI: https://pypi.org/project/idna
- Changelog: https://pyup.io/changelogs/idna/
Changelog
### 1.1.0
```
56da11c missed a comma
fde429d raise ParseError if we get an exception on is_iso8601()
21f5368 Add is_iso8601() function
406db6f Update license years
```
Links
- PyPI: https://pypi.org/project/iso8601
- Changelog: https://pyup.io/changelogs/iso8601/
- Repo: https://github.com/micktwomey/pyiso8601
Changelog
### 1.2.0
```
-------------
- Fix a security issue where ``eval(pre_dispatch)`` could potentially run
arbitrary code. Now only basic numerics are supported.
https://github.com/joblib/joblib/pull/1327
- Make sure that joblib works even when multiprocessing is not available,
for instance with Pyodide
https://github.com/joblib/joblib/pull/1256
- Avoid unnecessary warnings when workers and main process delete
the temporary memmap folder contents concurrently.
https://github.com/joblib/joblib/pull/1263
- Fix memory alignment bug for pickles containing numpy arrays.
This is especially important when loading the pickle with
``mmap_mode != None`` as the resulting ``numpy.memmap`` object
would not be able to correct the misalignment without performing
a memory copy.
This bug would cause invalid computation and segmentation faults
with native code that would directly access the underlying data
buffer of a numpy array, for instance C/C++/Cython code compiled
with older GCC versions or some old OpenBLAS written in platform
specific assembly.
https://github.com/joblib/joblib/pull/1254
- Vendor cloudpickle 2.2.0 which adds support for PyPy 3.8+.
- Vendor loky 3.3.0 which fixes several bugs including:
- robustly forcibly terminating worker processes in case of a crash
(https://github.com/joblib/joblib/pull/1269);
- avoiding leaking worker processes in case of nested loky parallel
calls;
- reliability spawn the correct number of reusable workers.
```
### 1.1.1
```
-------------
- Fix a security issue where ``eval(pre_dispatch)`` could potentially run
arbitrary code. Now only basic numerics are supported.
https://github.com/joblib/joblib/pull/1327
```
Links
- PyPI: https://pypi.org/project/joblib
- Changelog: https://pyup.io/changelogs/joblib/
- Docs: https://joblib.readthedocs.io
Changelog
### 3.6.1
```
This is the first bugfix release of the 3.6.x series.
This release contains several bug-fixes and adjustments:
* A warning is no longer raised when constrained layout explicitly
disabled and tight layout is applied
* Add missing `get_cmap` method to `ColormapRegistry`
* Adding a colorbar on a `ScalarMappable` that is not attached to an
`Axes` is now deprecated instead of raising a hard error
* Fix `barplot` being empty when first element is NaN
* Fix `FigureManager.resize` on GTK4
* Fix `fill_between` compatibility with NumPy 1.24 development version
* Fix `hexbin` with empty arrays and log scaling
* Fix `resize_event` deprecation warnings when creating figure on macOS
* Fix build in mingw
* Fix compatibility with PyCharm's interagg backend
* Fix crash on empty `Text` in PostScript backend
* Fix generic font families in SVG exports
* Fix horizontal colorbars with hatches
* Fix misplaced mathtext using `eqnarray`
* `stackplot` no longer changes the Axes cycler
```
Links
- PyPI: https://pypi.org/project/matplotlib
- Changelog: https://pyup.io/changelogs/matplotlib/
- Homepage: https://matplotlib.org
Changelog
### 2.3.0
```
With this minor release, `nb-clean` will now expand and recurse into directories passed as arguments to the `check` and `clean` commands.
```
### 2.2.1
```
This releases adds a [pre-commit](https://pre-commit.com/) hook.
```
Links
- PyPI: https://pypi.org/project/nb-clean
- Changelog: https://pyup.io/changelogs/nb-clean/
- Repo: https://github.com/srstevenson/nb-clean
Changelog
### 1.5.3
```
~~~~~~~~~~~~~~~~~~
Fixed bug when running ``isort --float-to-top`` and it was
removing the wrong cell (thanks tqa236 for the report!)
```
### 1.5.2
```
~~~~~~~~~~~~~~~~~~
Fixed bug in which, when running ``nbqa`` on a directory,
it wasn't ignoring invalid files (thanks francesco-ballarin for the report!)
```
### 1.5.1
```
~~~~~~~~~~~~~~~~~~
Built-in hooks now have ``types_or: [jupyter, markdown]``, so that
they'll run on both Jupyter and Markdown files if you specify
``jupytext`` as an additional dependency.
```
### 1.5.0
```
~~~~~~~~~~~~~~~~~~
``nbqa`` now removes empty cells which were not empty to begin with.
Markdown files saved via ``Jupytext`` will now be processed as well
(thanks basnijholt and rgommers for the suggestion!)
If ``nbqa`` is passed an invalid notebook, it will exit 123. If it's
passed a non-Python notebook, it'll exit 0.
Don't try to process files with the wrong extensions, even if passed
explicitly.
Added support for subcommands (thanks dnoliver for the issue, s-weigand for the fix)
```
Links
- PyPI: https://pypi.org/project/nbqa
- Changelog: https://pyup.io/changelogs/nbqa/
- Repo: https://github.com/nbQA-dev/nbQA
Changelog
### 0.15.0
```
[CHANGE] Remove `choose_formatter`. `choose_formatter` only existed for v0.14.x and was deprecated in v0.14.1. https://github.com/prometheus/client_python/pull/846
[FEATURE] Support TLS auth when using push gateway with `tls_auth_handler`. https://github.com/prometheus/client_python/pull/841
[ENHANCEMENT] Add `sum`, `livemin`, and `livemax` multiprocess modes for `Gauge`s. https://github.com/prometheus/client_python/pull/794
```
Links
- PyPI: https://pypi.org/project/prometheus-client
- Changelog: https://pyup.io/changelogs/prometheus-client/
- Repo: https://github.com/prometheus/client_python
Changelog
### 0.20.1
```
=================
- Fixes an issue that warned about using an old version of pytest, even though the most recent version was installed. `430 <https://github.com/pytest-dev/pytest-asyncio/issues/430>`_
```
### 0.20.0
```
=================
- BREAKING: Removed *legacy* mode. If you're upgrading from v0.19 and you haven't configured ``asyncio_mode = legacy``, you can upgrade without taking any additional action. If you're upgrading from an earlier version or you have explicitly enabled *legacy* mode, you need to switch to *auto* or *strict* mode before upgrading to this version.
- Deprecate use of pytest v6.
- Fixed an issue which prevented fixture setup from being cached. `404 <https://github.com/pytest-dev/pytest-asyncio/pull/404>`_
```
Links
- PyPI: https://pypi.org/project/pytest-asyncio
- Changelog: https://pyup.io/changelogs/pytest-asyncio/
- Repo: https://github.com/pytest-dev/pytest-asyncio
Changelog
### 4.0.0
```
------------------
**Note that this release drops support for multiprocessing.**
* `--cov-fail-under` no longer causes `pytest --collect-only` to fail
Contributed by Zac Hatfield-Dodds in `511 <https://github.com/pytest-dev/pytest-cov/pull/511>`_.
* Dropped support for multiprocessing (mostly because `issue 82408 <https://github.com/python/cpython/issues/82408>`_). This feature was
mostly working but very broken in certain scenarios and made the test suite very flaky and slow.
There is builtin multiprocessing support in coverage and you can migrate to that. All you need is this in your
``.coveragerc``::
[run]
concurrency = multiprocessing
parallel = true
sigterm = true
* Fixed deprecation in ``setup.py`` by trying to import setuptools before distutils.
Contributed by Ben Greiner in `545 <https://github.com/pytest-dev/pytest-cov/pull/545>`_.
* Removed undesirable new lines that were displayed while reporting was disabled.
Contributed by Delgan in `540 <https://github.com/pytest-dev/pytest-cov/pull/540>`_.
* Documentation fixes.
Contributed by Andre Brisco in `543 <https://github.com/pytest-dev/pytest-cov/pull/543>`_
and Colin O'Dell in `525 <https://github.com/pytest-dev/pytest-cov/pull/525>`_.
* Added support for LCOV output format via `--cov-report=lcov`. Only works with coverage 6.3+.
Contributed by Christian Fetzer in `536 <https://github.com/pytest-dev/pytest-cov/issues/536>`_.
* Modernized pytest hook implementation.
Contributed by Bruno Oliveira in `549 <https://github.com/pytest-dev/pytest-cov/pull/549>`_
and Ronny Pfannschmidt in `550 <https://github.com/pytest-dev/pytest-cov/pull/550>`_.
```
Links
- PyPI: https://pypi.org/project/pytest-cov
- Changelog: https://pyup.io/changelogs/pytest-cov/
- Repo: https://github.com/pytest-dev/pytest-cov
Changelog
### 1.9.2
```
compared to `1.9.1`. It also provides wheels for Python `3.11`
on several platforms.
Authors
=======
* Hood Chatham (1)
* Thomas J. Fan (1)
* Ralf Gommers (22)
* Matt Haberland (5)
* Julien Jerphanion (1)
* Loïc Estève (1)
* Nicholas McKibben (2)
* Naoto Mizuno (1)
* Andrew Nelson (3)
* Tyler Reddy (28)
* Pamphile Roy (1)
* Ewout ter Hoeven (2)
* Warren Weckesser (1)
* Meekail Zain (1) +
A total of 14 people contributed to this release.
People with a "+" by their names contributed a patch for the first time.
This list of names is automatically generated, and may not be fully complete.
```
Links
- PyPI: https://pypi.org/project/scipy
- Changelog: https://pyup.io/changelogs/scipy/
- Homepage: https://scipy.org/
Changelog
### 0.12.1
```
This is an incremental release that is a recommended upgrade for all
users. It addresses a handful of bugs / regressions in v0.12.0 and adds
several features and enhancements to the new [objects interface](http://seaborn.pydata.org/tutorial/objects_interface).
- Added the `objects.Text` mark (3051).
- Added the `objects.Dash` mark (3074).
- Added the `objects.Perc` stat (3063).
- Added the `objects.Count` stat (3086).
- The `objects.Band` and `objects.Range` marks will now cover the full
extent of the data if `min` / `max` variables are not explicitly assigned or
added in a transform (3056).
- The `objects.Jitter` move now applies a small amount of jitter by
default (3066).
- Axes with a `objects.Nominal` scale now appear like categorical axes
in classic seaborn, with fixed margins, no grid, and an inverted y
axis (3069).
- The `objects.Continuous.label` method now accepts `base=None` to override the default formatter
with a log transform (3087).
- Marks that sort along the orient axis (e.g. `objects.Line`) now use a
stable algorithm (3064).
- Added a `label` parameter to `pointplot`,
which addresses a regression in 0.12.0 when `pointplot` is passed to
`FacetGrid` (3016).
- Fixed a bug that caused an exception when more than two layers with
the same mappings were added to `objects.Plot` (3055).
- Made `objects.PolyFit` robust to missing data (3010).
- Fixed a bug in `objects.Plot` that occurred when data assigned to the
orient coordinate had zero variance (3084).
- Fixed a regression in `kdeplot` where passing `cmap` for an unfilled bivariate plot would
raise an exception (3065).
- Addressed a performance regression in `lineplot` with a large number
of unique x values (3081).
- Seaborn no longer contains doctest-style examples, simplifying the
testing infrastructure (3034).
```
Links
- PyPI: https://pypi.org/project/seaborn
- Changelog: https://pyup.io/changelogs/seaborn/
Changelog
### 5.3.0
```
=====================================
* 10759: LaTeX: add :confval:`latex_table_style` and support the
``'booktabs'``, ``'borderless'``, and ``'colorrows'`` styles.
(thanks to Stefan Wiehler for initial pull requests 6666, 6671)
* 10840: One can cross-reference including an option value like ``:option:`--module=foobar,
``:option:`--module[=foobar] or ``:option:`--module foobar.
Patch by Martin Liska.
* 10881: autosectionlabel: Record the generated section label to the debug log.
* 10268: Correctly URI-escape image filenames.
* 10887: domains: Allow sections in all the content of all object description
directives (e.g. :rst:dir:`py:function`). Patch by Adam Turner
```
### 5.2.3
```
=====================================
* 10878: Fix base64 image embedding in ``sphinx.ext.imgmath``
* 10886: Add ``:nocontentsentry:`` flag and global domain table of contents
entry control option. Patch by Adam Turner
```
### 5.2.2
```
=====================================
* 10872: Restore link targets for autodoc modules to the top of content.
Patch by Dominic Davis-Foster.
```
### 5.2.1
```
=====================================
Bugs fixed
----------
* 10861: Always normalise the ``pycon3`` lexer to ``pycon``.
* Fix using ``sphinx.ext.autosummary`` with modules containing titles in the
module-level docstring.
```
### 5.2.0.post0
```
===========================================
* Recreated source tarballs for Debian maintainers.
```
### 5.2.0
```
=====================================
Dependencies
------------
* 10356: Sphinx now uses declarative metadata with ``pyproject.toml`` to
create packages, using PyPA's ``flit`` project as a build backend. Patch by
Adam Turner.
Deprecated
----------
* 10843: Support for HTML 4 output. Patch by Adam Turner.
Features added
--------------
* 10738: napoleon: Add support for docstring types using 'of', like
``type of type``. Example: ``tuple of int``.
* 10286: C++, support requires clauses not just between the template
parameter lists and the declaration.
* 10755: linkcheck: Check the source URL of raw directives that use the ``url``
option.
* 10781: Allow :rst:role:`ref` role to be used with definitions and fields.
* 10717: HTML Search: Increase priority for full title and
subtitle matches in search results
* 10718: HTML Search: Save search result score to the HTML element for debugging
* 10673: Make toctree accept 'genindex', 'modindex' and 'search' docnames
* 6316, 10804: Add domain objects to the table of contents. Patch by Adam Turner
* 6692: HTML Search: Include explicit :rst:dir:`index` directive index entries
in the search index and search results. Patch by Adam Turner
* 10816: imgmath: Allow embedding images in HTML as base64
* 10854: HTML Search: Use browser localstorage for highlight control, stop
storing highlight parameters in URL query strings. Patch by Adam Turner.
Bugs fixed
----------
* 10723: LaTeX: 5.1.0 has made the 'sphinxsetup' ``verbatimwithframe=false``
become without effect.
* 10257: C++, ensure consistent non-specialization template argument
representation.
* 10729: C++, fix parsing of certain non-type template parameter packs.
* 10715: Revert 10520: "Fix" use of sidebar classes in ``agogo.css_t``
```
Links
- PyPI: https://pypi.org/project/sphinx
- Changelog: https://pyup.io/changelogs/sphinx/
Changelog
### 0.16.0
```
([Full Changelog](https://github.com/jupyter/terminado/compare/v0.15.0...7210e82a94596d7d8a00577169c09198efbe4633))
Bugs fixed
- Fix issue where large stdin writes can cause Tornado to hang [189](https://github.com/jupyter/terminado/pull/189) ([KoopaKing](https://github.com/KoopaKing))
Maintenance and upkeep improvements
- Switch to using hatch version [186](https://github.com/jupyter/terminado/pull/186) ([blink1073](https://github.com/blink1073))
- Fix flake8 v5 compat [179](https://github.com/jupyter/terminado/pull/179) ([blink1073](https://github.com/blink1073))
Contributors to this release
([GitHub contributors page for this release](https://github.com/jupyter/terminado/graphs/contributors?from=2022-05-16&to=2022-09-29&type=c))
[blink1073](https://github.com/search?q=repo%3Ajupyter%2Fterminado+involves%3Ablink1073+updated%3A2022-05-16..2022-09-29&type=Issues) | [KoopaKing](https://github.com/search?q=repo%3Ajupyter%2Fterminado+involves%3AKoopaKing+updated%3A2022-05-16..2022-09-29&type=Issues) | [pre-commit-ci](https://github.com/search?q=repo%3Ajupyter%2Fterminado+involves%3Apre-commit-ci+updated%3A2022-05-16..2022-09-29&type=Issues)
<!-- <END NEW CHANGELOG ENTRY> -->
```
Links
- PyPI: https://pypi.org/project/terminado
- Changelog: https://pyup.io/changelogs/terminado/
Changelog
### 5.5.0
```
* Clean up application typing
* Update tests and docs to use non-deprecated functions
* Clean up version handling
* Prep for jupyter releaser
* Format the changelog
<!-- <END NEW CHANGELOG ENTRY> -->
```
Links
- PyPI: https://pypi.org/project/traitlets
- Changelog: https://pyup.io/changelogs/traitlets/
Changelog
### 2022.5
```
Upstream version 2022e released 2022-10-11T18:13:02+00:00
Briefly:
Jordan and Syria switch from +02/+03 with DST to year-round +03.
Changes to future timestamps
Jordan and Syria are abandoning the DST regime and are changing to permanent
+03, so they will not fall back from +03 to +02 on 2022-10-28. (Thanks to
Steffen Thorsen and Issam Al-Zuwairi.)
Changes to past timestamps
On 1922-01-01 Tijuana adopted standard time at 00:00, not 01:00.
Changes to past time zone abbreviations and DST flags
The temporary advancement of clocks in central Mexico in summer 1931 is now
treated as daylight saving time, instead of as two changes to standard time.
---
```
### 2022.4
```
Upstream version 2022d released 2022-09-23T19:02:57+00:00
Briefly:
Palestine transitions are now Saturdays at 02:00. Simplify three Ukraine zones
into one.
Changes to future timestamps
Palestine now springs forward and falls back at 02:00 on the first Saturday on
or after March 24 and October 24, respectively. This means 2022 falls back 10-29
at 02:00, not 10-28 at 01:00. (Thanks to Heba Hamad.)
Changes to past timestamps
Simplify three Ukraine zones to one, since the post-1970 differences seem to
have been imaginary. Move Europe/Uzhgorod and Europe/Zaporozhye to 'backzone';
backward-compatibility links still work, albeit with different timestamps before
October 1991.
---
```
### 2022.3
```
Upstream version 2022c released 2022-08-16T00:47:18+00:00
Briefly:
Work around awk bug in FreeBSD, macOS, etc. Improve tzselect on intercontinental
Zones.
---
```
Links
- PyPI: https://pypi.org/project/tzdata
- Changelog: https://pyup.io/changelogs/tzdata/
- Repo: https://github.com/python/tzdata
Changelog
### 3.10.0
```
=======
* ``zipp`` is now a package.
```
### 3.9.1
```
======
* Removed 'print' expression in test_pickle.
* bpo-43651: Apply ``io.text_encoding`` on Python 3.10 and later.
```
### 3.9.0
```
======
* 81: ``Path`` objects are now pickleable if they've been
constructed from pickleable objects. Any restored objects
will re-construct the zip file with the original arguments.
```
Links
- PyPI: https://pypi.org/project/zipp
- Changelog: https://pyup.io/changelogs/zipp/
- Repo: https://github.com/jaraco/zipp
Update autoflake from 1.5.3 to 1.7.7.
The bot wasn't able to find a changelog for this release. Got an idea?
Links
- PyPI: https://pypi.org/project/autoflakeUpdate black from 22.8.0 to 22.10.0.
Changelog
### 22.10.0 ``` Highlights - Runtime support for Python 3.6 has been removed. Formatting 3.6 code will still be supported until further notice. Stable style - Fix a crash when ` fmt: on` is used on a different block level than ` fmt: off` (3281) Preview style - Fix a crash when formatting some dicts with parenthesis-wrapped long string keys (3262) Configuration - `.ipynb_checkpoints` directories are now excluded by default (3293) - Add `--skip-source-first-line` / `-x` option to ignore the first line of source code while formatting (3299) Packaging - Executables made with PyInstaller will no longer crash when formatting several files at once on macOS. Native x86-64 executables for macOS are available once again. (3275) - Hatchling is now used as the build backend. This will not have any effect for users who install Black with its wheels from PyPI. (3233) - Faster compiled wheels are now available for CPython 3.11 (3276) _Blackd_ - Windows style (CRLF) newlines will be preserved (3257). Integrations - Vim plugin: add flag (`g:black_preview`) to enable/disable the preview style (3246) - Update GitHub Action to support formatting of Jupyter Notebook files via a `jupyter` option (3282) - Update GitHub Action to support use of version specifiers (e.g. `<23`) for Black version (3265) ```Links
- PyPI: https://pypi.org/project/black - Changelog: https://pyup.io/changelogs/black/Update certifi from 2022.6.15.1 to 2022.9.24.
The bot wasn't able to find a changelog for this release. Got an idea?
Links
- PyPI: https://pypi.org/project/certifi - Repo: https://github.com/certifi/python-certifiUpdate charset-normalizer from 2.1.1 to 3.0.0.
The bot wasn't able to find a changelog for this release. Got an idea?
Links
- PyPI: https://pypi.org/project/charset-normalizer - Repo: https://github.com/Ousret/charset_normalizerUpdate coverage from 6.4.4 to 6.5.0.
Changelog
### 6.5.0 ``` -------------------------- - The JSON report now includes details of which branches were taken, and which are missing for each file. Thanks, Christoph Blessing (`pull 1438`_). Closes `issue 1425`_. - Starting with coverage.py 6.2, ``class`` statements were marked as a branch. This wasn't right, and has been reverted, fixing `issue 1449`_. Note this will very slightly reduce your coverage total if you are measuring branch coverage. - Packaging is now compliant with `PEP 517`_, closing `issue 1395`_. - A new debug option ``--debug=pathmap`` shows details of the remapping of paths that happens during combine due to the ``[paths]`` setting. - Fix an internal problem with caching of invalid Python parsing. Found by OSS-Fuzz, fixing their `bug 50381`_. .. _bug 50381: https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=50381 .. _PEP 517: https://peps.python.org/pep-0517/ .. _issue 1395: https://github.com/nedbat/coveragepy/issues/1395 .. _issue 1425: https://github.com/nedbat/coveragepy/issues/1425 .. _pull 1438: https://github.com/nedbat/coveragepy/pull/1438 .. _issue 1449: https://github.com/nedbat/coveragepy/issues/1449 .. _changes_6-4-4: ```Links
- PyPI: https://pypi.org/project/coverage - Changelog: https://pyup.io/changelogs/coverage/ - Repo: https://github.com/nedbat/coveragepyUpdate exchange-calendars from 4.2 to 4.2.3.
Changelog
### 4.2.3 ``` What’s Changed Continuous Integration * Disable install check from release workflow (236) maread99 ``` ### 4.2.2 ``` NB github release 4.2.2 was not released to PyPI. The below changes were incorporated into PyPI release 4.2.3. What’s Changed Continuous Integration * Revert (partially) release workflow (235) maread99 ``` ### 4.2.1 ``` NB github release 4.2.1 was not released to PyPI. The below changes were incorporated in PyPI release 4.2.3. What’s Changed Calendar Updates * XLON: add Queen Elizabeth II funeral day 2022-09-12 (230) monkeyusage * XSHG: Added 2022-10-06 and 2022-10-07 as market holidays (228) philiptromans * XASX: Added National Day of Mourning for Her Majesty the Queen (232) philiptromans Continuous Integration * Update release workflow (234) maread99 Maintenance * Update dependencies (227) maread99 * Bump actions/cache from 3.0.7 to 3.0.8 (226) dependabot ```Links
- PyPI: https://pypi.org/project/exchange-calendars - Changelog: https://pyup.io/changelogs/exchange-calendars/Update executing from 1.0.0 to 1.1.1.
The bot wasn't able to find a changelog for this release. Got an idea?
Links
- PyPI: https://pypi.org/project/executing - Changelog: https://pyup.io/changelogs/executing/ - Repo: https://github.com/alexmojaki/executingUpdate finnhub-python from 2.4.14 to 2.4.15.
The bot wasn't able to find a changelog for this release. Got an idea?
Links
- PyPI: https://pypi.org/project/finnhub-python - Changelog: https://pyup.io/changelogs/finnhub-python/ - Homepage: https://finnhub.io/docs/apiUpdate fonttools from 4.37.1 to 4.38.0.
Changelog
### 4.38.0 ``` ---------------------------- - [varLib.instancer] Added support for L4 instancing, i.e. moving the default value of an axis while keeping it variable. Thanks Behdad! (2728, 2861). It's now also possible to restrict an axis min/max values beyond the current default value, e.g. a font wght has min=100, def=400, max=900 and you want a partial VF that only varies between 500 and 700, you can now do that. You can either specify two min/max values (wght=500:700), and the new default will be set to either the minimum or maximum, depending on which one is closer to the current default (e.g. 500 in this case). Or you can specify three values (e.g. wght=500:600:700) to specify the new default value explicitly. - [otlLib/featureVars] Set a few Count values so one doesn't need to compile the font to update them (2860). - [varLib.models] Make extrapolation work for 2-master models as well where one master is at the default location (2843, 2846). Add optional extrapolate=False to normalizeLocation() (2847, 2849). - [varLib.cff] Fixed sub-optimal packing of CFF2 deltas by no longer rounding them to integer (2838). - [scaleUpem] Calculate numShorts in VarData after scale; handle CFF hintmasks (2840). ``` ### 4.37.4 ``` ---------------------------- - [subset] Keep nameIDs used by CPAL palette entry labels (2837). - [varLib] Avoid negative hmtx values when creating font from variable CFF2 font (2827). - [instancer] Don't prune stat.ElidedFallbackNameID (2828). - [unicodedata] Update Scripts/Blocks to Unicode 15.0 (2833). ``` ### 4.37.3 ``` ---------------------------- - Fix arguments in calls to (glyf) glyph.draw() and drawPoints(), whereby offset wasn't correctly passed down; this fix also exposed a second bug, where lsb and tsb were not set (2824, 2825, adobe-type-tools/afdko1560). ``` ### 4.37.2 ``` ---------------------------- - [subset] Keep CPAL table and don't attempt to prune unused color indices if OT-SVG table is present even if COLR table was subsetted away; OT-SVG may be referencing the CPAL table; for now we assume that's the case (2814, 2815). - [varLib.instancer] Downgrade GPOS/GSUB version if there are no more FeatureVariations after instancing (2812). - [subset] Added ``--no-lazy`` to optionally load fonts eagerly (mostly to ease debugging of table lazy loading, no practical effects) (2807). - [varLib] Avoid building empty COLR.DeltaSetIndexMap with only identity mappings (2803). - [feaLib] Allow multiple value record types (by promoting to the most general format) within the same PairPos subtable; e.g. this allows variable and non variable kerning rules to share the same subtable. This also fixes a bug whereby some kerning pairs would become unreachable while shapiong because of premature subtable splitting (2772, 2776). - [feaLib] Speed up ``VarScalar`` by caching models for recurring master locations (2798). - [feaLib] Optionally cythonize ``feaLib.lexer``, speeds up parsing FEA a bit (2799). - [designspaceLib] Avoid crash when handling unbounded rule conditions (2797). - [post] Don't crash if ``post`` legacy format 1 is malformed/improperly used (2786) - [gvar] Don't be "lazy" (load all glyph variations up front) when TTFont.lazy=False (2771). - [TTFont] Added ``normalizeLocation`` method to normalize a location dict from the font's defined axes space (also known as "user space") into the normalized (-1..+1) space. It applies ``avar`` mapping if the font contains an ``avar`` table (2789). - [TTVarGlyphSet] Support drawing glyph instances from CFF2 variable glyph set (2784). - [fontBuilder] Do not error when building cmap if there are zero code points (2785). - [varLib.plot] Added ability to plot a variation model and set of accompaning master values corresponding to the model's master locations into a pyplot figure (2767). - [Snippets] Added ``statShape.py`` script to draw statistical shape of a glyph as an ellips (requires pycairo) (baecd88). - [TTVarGlyphSet] implement drawPoints natively, avoiding going through SegmentToPointPen (2778). - [TTVarGlyphSet] Fixed bug whereby drawing a composite glyph multiple times, its components would shif; needed an extra copy (2774). ```Links
- PyPI: https://pypi.org/project/fonttools - Changelog: https://pyup.io/changelogs/fonttools/ - Repo: http://github.com/fonttools/fonttoolsUpdate GitPython from 3.1.27 to 3.1.29.
The bot wasn't able to find a changelog for this release. Got an idea?
Links
- PyPI: https://pypi.org/project/gitpython - Repo: https://github.com/gitpython-developers/GitPython - Docs: https://pythonhosted.org/GitPython/Update hypothesis from 6.54.5 to 6.56.3.
Changelog
### 6.56.3 ``` ------------------- This patch teaches :func:`~hypothesis.strategies.text` to rewrite a few more filter predicates (:issue:`3134`). You're unlikely to notice any change. ``` ### 6.56.2 ``` ------------------- This patch updates our vendored `list of top-level domains <https://www.iana.org/domains/root/db>`__, which is used by the provisional :func:`~hypothesis.provisional.domains` strategy, and fixes some incorrect examples in the docs for :func:`~hypothesis.extra.numpy.mutually_broadcastable_shapes`. ``` ### 6.56.1 ``` ------------------- This patch improves the error message when Hypothesis detects "flush to zero" mode for floating-point: we now report which package(s) enabled this, which can make debugging much easier. See :issue:`3458` for details. ``` ### 6.56.0 ``` ------------------- This release defines ``__bool__()`` on :class:`~hypothesis.strategies.SearchStrategy`. It always returns ``True``, like before, but also emits a warning to help with cases where you intended to draw a value (:issue:`3463`). ``` ### 6.55.0 ``` ------------------- In preparation for `future versions of the Array API standard <https://data-apis.org/array-api/latest/future_API_evolution.html>`__, :func:`~hypothesis.extra.array_api.make_strategies_namespace` now accepts an optional ``api_version`` argument, which determines the version conformed to by the returned strategies namespace. If ``None``, the version of the passed array module ``xp`` is inferred. This release also introduces :func:`xps.real_dtypes`. This is currently equivalent to the existing :func:`xps.numeric_dtypes` strategy, but exists because the latter is expected to include complex numbers in the next version of the standard. ``` ### 6.54.6 ``` ------------------- If multiple explicit examples (from :func:`example() <hypothesis.example>`) raise a Skip exception, for consistency with generated examples we now re-raise the first instead of collecting them into an ExceptionGroup (:issue:`3453`). ```Links
- PyPI: https://pypi.org/project/hypothesis - Changelog: https://pyup.io/changelogs/hypothesis/ - Homepage: https://hypothesis.worksUpdate identify from 2.5.5 to 2.5.6.
The bot wasn't able to find a changelog for this release. Got an idea?
Links
- PyPI: https://pypi.org/project/identify - Repo: https://github.com/pre-commit/identifyUpdate idna from 3.3 to 3.4.
Changelog
### 3.4 ``` ++++++++++++++++ - Update to Unicode 15.0.0 - Migrate to pyproject.toml for build information (PEP 621) - Correct another instance where generic exception was raised instead of IDNAError for malformed input - Source distribution uses zeroized file ownership for improved reproducibility Thanks to Seth Michael Larson for contributions to this release. ```Links
- PyPI: https://pypi.org/project/idna - Changelog: https://pyup.io/changelogs/idna/Update importlib-metadata from 4.12.0 to 5.0.0.
The bot wasn't able to find a changelog for this release. Got an idea?
Links
- PyPI: https://pypi.org/project/importlib-metadata - Changelog: https://pyup.io/changelogs/importlib-metadata/ - Repo: https://github.com/python/importlib_metadataUpdate iso8601 from 1.0.2 to 1.1.0.
Changelog
### 1.1.0 ``` 56da11c missed a comma fde429d raise ParseError if we get an exception on is_iso8601() 21f5368 Add is_iso8601() function 406db6f Update license years ```Links
- PyPI: https://pypi.org/project/iso8601 - Changelog: https://pyup.io/changelogs/iso8601/ - Repo: https://github.com/micktwomey/pyiso8601Update joblib from 1.1.0 to 1.2.0.
Changelog
### 1.2.0 ``` ------------- - Fix a security issue where ``eval(pre_dispatch)`` could potentially run arbitrary code. Now only basic numerics are supported. https://github.com/joblib/joblib/pull/1327 - Make sure that joblib works even when multiprocessing is not available, for instance with Pyodide https://github.com/joblib/joblib/pull/1256 - Avoid unnecessary warnings when workers and main process delete the temporary memmap folder contents concurrently. https://github.com/joblib/joblib/pull/1263 - Fix memory alignment bug for pickles containing numpy arrays. This is especially important when loading the pickle with ``mmap_mode != None`` as the resulting ``numpy.memmap`` object would not be able to correct the misalignment without performing a memory copy. This bug would cause invalid computation and segmentation faults with native code that would directly access the underlying data buffer of a numpy array, for instance C/C++/Cython code compiled with older GCC versions or some old OpenBLAS written in platform specific assembly. https://github.com/joblib/joblib/pull/1254 - Vendor cloudpickle 2.2.0 which adds support for PyPy 3.8+. - Vendor loky 3.3.0 which fixes several bugs including: - robustly forcibly terminating worker processes in case of a crash (https://github.com/joblib/joblib/pull/1269); - avoiding leaking worker processes in case of nested loky parallel calls; - reliability spawn the correct number of reusable workers. ``` ### 1.1.1 ``` ------------- - Fix a security issue where ``eval(pre_dispatch)`` could potentially run arbitrary code. Now only basic numerics are supported. https://github.com/joblib/joblib/pull/1327 ```Links
- PyPI: https://pypi.org/project/joblib - Changelog: https://pyup.io/changelogs/joblib/ - Docs: https://joblib.readthedocs.ioUpdate keyring from 23.9.1 to 23.9.3.
Changelog
### 23.9.3 ``` ------- * 596: Add workaround for devpi_client hook with wrapped implementation. ``` ### 23.9.2 ``` ------- * 597: Fixed wrong name in compatibility logic for ``properties`` (masked by the compatibility fallback). ```Links
- PyPI: https://pypi.org/project/keyring - Changelog: https://pyup.io/changelogs/keyring/ - Repo: https://github.com/jaraco/keyringUpdate korean-lunar-calendar from 0.2.1 to 0.3.1.
The bot wasn't able to find a changelog for this release. Got an idea?
Links
- PyPI: https://pypi.org/project/korean-lunar-calendar - Repo: https://github.com/usingsky/korean_lunar_calendar_pyUpdate matplotlib from 3.5.3 to 3.6.1.
Changelog
### 3.6.1 ``` This is the first bugfix release of the 3.6.x series. This release contains several bug-fixes and adjustments: * A warning is no longer raised when constrained layout explicitly disabled and tight layout is applied * Add missing `get_cmap` method to `ColormapRegistry` * Adding a colorbar on a `ScalarMappable` that is not attached to an `Axes` is now deprecated instead of raising a hard error * Fix `barplot` being empty when first element is NaN * Fix `FigureManager.resize` on GTK4 * Fix `fill_between` compatibility with NumPy 1.24 development version * Fix `hexbin` with empty arrays and log scaling * Fix `resize_event` deprecation warnings when creating figure on macOS * Fix build in mingw * Fix compatibility with PyCharm's interagg backend * Fix crash on empty `Text` in PostScript backend * Fix generic font families in SVG exports * Fix horizontal colorbars with hatches * Fix misplaced mathtext using `eqnarray` * `stackplot` no longer changes the Axes cycler ```Links
- PyPI: https://pypi.org/project/matplotlib - Changelog: https://pyup.io/changelogs/matplotlib/ - Homepage: https://matplotlib.orgUpdate mypy from 0.971 to 0.982.
The bot wasn't able to find a changelog for this release. Got an idea?
Links
- PyPI: https://pypi.org/project/mypy - Homepage: http://www.mypy-lang.org/Update nb-clean from 2.2.0 to 2.3.0.
Changelog
### 2.3.0 ``` With this minor release, `nb-clean` will now expand and recurse into directories passed as arguments to the `check` and `clean` commands. ``` ### 2.2.1 ``` This releases adds a [pre-commit](https://pre-commit.com/) hook. ```Links
- PyPI: https://pypi.org/project/nb-clean - Changelog: https://pyup.io/changelogs/nb-clean/ - Repo: https://github.com/srstevenson/nb-cleanUpdate nbclient from 0.6.8 to 0.7.0.
Changelog
### 0.7.0 ``` ([Full Changelog](https://github.com/jupyter/nbclient/compare/v0.6.8...449f17d0374f43694d2203d216c97dd4ac7f2c0e)) Maintenance and upkeep improvements - Cleanup CI [254](https://github.com/jupyter/nbclient/pull/254) ([blink1073](https://github.com/blink1073)) - Handle client 8 support [253](https://github.com/jupyter/nbclient/pull/253) ([blink1073](https://github.com/blink1073)) Other merged PRs Contributors to this release ([GitHub contributors page for this release](https://github.com/jupyter/nbclient/graphs/contributors?from=2022-09-09&to=2022-10-06&type=c)) [blink1073](https://github.com/search?q=repo%3Ajupyter%2Fnbclient+involves%3Ablink1073+updated%3A2022-09-09..2022-10-06&type=Issues) | [pre-commit-ci](https://github.com/search?q=repo%3Ajupyter%2Fnbclient+involves%3Apre-commit-ci+updated%3A2022-09-09..2022-10-06&type=Issues) <!-- <END NEW CHANGELOG ENTRY> --> ```Links
- PyPI: https://pypi.org/project/nbclient - Changelog: https://pyup.io/changelogs/nbclient/ - Homepage: https://jupyter.orgUpdate nbconvert from 7.0.0 to 7.2.2.
Changelog
### 7.2.2 ``` ([Full Changelog](https://github.com/jupyter/nbconvert/compare/v7.2.1...a9566befb6e457b51373b61debffc78050d41273)) Bugs fixed - Fix default config test [1885](https://github.com/jupyter/nbconvert/pull/1885) ([blink1073](https://github.com/blink1073)) Maintenance and upkeep improvements - Add ensure label workflow [1884](https://github.com/jupyter/nbconvert/pull/1884) ([blink1073](https://github.com/blink1073)) - Add release workflows [1883](https://github.com/jupyter/nbconvert/pull/1883) ([blink1073](https://github.com/blink1073)) - Maintenance cleanup [1881](https://github.com/jupyter/nbconvert/pull/1881) ([blink1073](https://github.com/blink1073)) Contributors to this release ([GitHub contributors page for this release](https://github.com/jupyter/nbconvert/graphs/contributors?from=2022-10-06&to=2022-10-19&type=c)) [blink1073](https://github.com/search?q=repo%3Ajupyter%2Fnbconvert+involves%3Ablink1073+updated%3A2022-10-06..2022-10-19&type=Issues) | [pre-commit-ci](https://github.com/search?q=repo%3Ajupyter%2Fnbconvert+involves%3Apre-commit-ci+updated%3A2022-10-06..2022-10-19&type=Issues) <!-- <END NEW CHANGELOG ENTRY> --> ``` ### 7.2.1 ``` ([Full Changelog](https://github.com/jupyter/nbconvert/compare/v7.2.0...5cfa5893e3e8fe830eec2b8abf791199a52aad07)) Bugs fixed - Fix version handling [1878](https://github.com/jupyter/nbconvert/pull/1878) ([blink1073](https://github.com/blink1073)) Contributors to this release ([GitHub contributors page for this release](https://github.com/jupyter/nbconvert/graphs/contributors?from=2022-10-06&to=2022-10-06&type=c)) [blink1073](https://github.com/search?q=repo%3Ajupyter%2Fnbconvert+involves%3Ablink1073+updated%3A2022-10-06..2022-10-06&type=Issues) ``` ### 7.2.0 ``` ([Full Changelog](https://github.com/jupyter/nbconvert/compare/7.1.0...e4e85b60c4c130f33db02c4ce209cc4704c7001a)) Maintenance and upkeep improvements - Prep for jupyter releaser [1877](https://github.com/jupyter/nbconvert/pull/1877) ([blink1073](https://github.com/blink1073)) - Add support for jupyter_client 8 [1867](https://github.com/jupyter/nbconvert/pull/1867) ([blink1073](https://github.com/blink1073)) Contributors to this release ([GitHub contributors page for this release](https://github.com/jupyter/nbconvert/graphs/contributors?from=2022-10-03&to=2022-10-06&type=c)) [blink1073](https://github.com/search?q=repo%3Ajupyter%2Fnbconvert+involves%3Ablink1073+updated%3A2022-10-03..2022-10-06&type=Issues) ``` ### 7.1.0 ``` - Fix markdown table not render bug by Neutree in [1853](https://github.com/jupyter/nbconvert/pull/1853) - Replace lxml.html.clean_html with bleach; drop lxml dependency by akx in [1854](https://github.com/jupyter/nbconvert/pull/1854) - Remove CircleCI badge from README by akx in [1857](https://github.com/jupyter/nbconvert/pull/1857) - Added support for section (slide) "data-\*" attributes by bouzidanas in [1861](https://github.com/jupyter/nbconvert/pull/1861) ```Links
- PyPI: https://pypi.org/project/nbconvert - Changelog: https://pyup.io/changelogs/nbconvert/Update nbformat from 5.4.0 to 5.7.0.
The bot wasn't able to find a changelog for this release. Got an idea?
Links
- PyPI: https://pypi.org/project/nbformatUpdate nbqa from 1.4.0 to 1.5.3.
Changelog
### 1.5.3 ``` ~~~~~~~~~~~~~~~~~~ Fixed bug when running ``isort --float-to-top`` and it was removing the wrong cell (thanks tqa236 for the report!) ``` ### 1.5.2 ``` ~~~~~~~~~~~~~~~~~~ Fixed bug in which, when running ``nbqa`` on a directory, it wasn't ignoring invalid files (thanks francesco-ballarin for the report!) ``` ### 1.5.1 ``` ~~~~~~~~~~~~~~~~~~ Built-in hooks now have ``types_or: [jupyter, markdown]``, so that they'll run on both Jupyter and Markdown files if you specify ``jupytext`` as an additional dependency. ``` ### 1.5.0 ``` ~~~~~~~~~~~~~~~~~~ ``nbqa`` now removes empty cells which were not empty to begin with. Markdown files saved via ``Jupytext`` will now be processed as well (thanks basnijholt and rgommers for the suggestion!) If ``nbqa`` is passed an invalid notebook, it will exit 123. If it's passed a non-Python notebook, it'll exit 0. Don't try to process files with the wrong extensions, even if passed explicitly. Added support for subcommands (thanks dnoliver for the issue, s-weigand for the fix) ```Links
- PyPI: https://pypi.org/project/nbqa - Changelog: https://pyup.io/changelogs/nbqa/ - Repo: https://github.com/nbQA-dev/nbQAUpdate nest-asyncio from 1.5.5 to 1.5.6.
The bot wasn't able to find a changelog for this release. Got an idea?
Links
- PyPI: https://pypi.org/project/nest-asyncio - Repo: https://github.com/erdewit/nest_asyncioUpdate notebook from 6.4.12 to 6.5.1.
The bot wasn't able to find a changelog for this release. Got an idea?
Links
- PyPI: https://pypi.org/project/notebook - Changelog: https://pyup.io/changelogs/notebook/ - Homepage: http://jupyter.orgUpdate numpy from 1.23.3 to 1.23.4.
The bot wasn't able to find a changelog for this release. Got an idea?
Links
- PyPI: https://pypi.org/project/numpy - Homepage: https://www.numpy.orgUpdate pandas from 1.4.4 to 1.5.1.
The bot wasn't able to find a changelog for this release. Got an idea?
Links
- PyPI: https://pypi.org/project/pandas - Homepage: https://pandas.pydata.orgUpdate pandas-market-calendars from 4.0 to 4.1.0.
Changelog
### 4.1.0 ``` ~~~~~~~~~~~~~~ - Added UK and Australia holidays for Queen Elizabeth II's State Funeral ``` ### 4.0.3 ``` ~~~~~~~~~~~~~~ - Enabled tests that failed before PR 215 ``` ### 4.0.2 ``` ~~~~~~~~~~~~~~ - Implemented new release management ``` ### 4.0.1 ``` ~~~~~~~~~~~~~~ - Fix duplicates bug in special_dates - Fix tz=None bug in NYSEExchangeCalendar.valid_days ```Links
- PyPI: https://pypi.org/project/pandas-market-calendars - Changelog: https://pyup.io/changelogs/pandas-market-calendars/ - Repo: https://github.com/rsheftel/pandas_market_calendarsUpdate pbr from 5.10.0 to 5.11.0.
The bot wasn't able to find a changelog for this release. Got an idea?
Links
- PyPI: https://pypi.org/project/pbr - Homepage: https://docs.openstack.org/pbr/latest/Update polygon-api-client from 1.3.0 to 1.3.1.
The bot wasn't able to find a changelog for this release. Got an idea?
Links
- PyPI: https://pypi.org/project/polygon-api-client - Homepage: https://polygon.ioUpdate prometheus-client from 0.14.1 to 0.15.0.
Changelog
### 0.15.0 ``` [CHANGE] Remove `choose_formatter`. `choose_formatter` only existed for v0.14.x and was deprecated in v0.14.1. https://github.com/prometheus/client_python/pull/846 [FEATURE] Support TLS auth when using push gateway with `tls_auth_handler`. https://github.com/prometheus/client_python/pull/841 [ENHANCEMENT] Add `sum`, `livemin`, and `livemax` multiprocess modes for `Gauge`s. https://github.com/prometheus/client_python/pull/794 ```Links
- PyPI: https://pypi.org/project/prometheus-client - Changelog: https://pyup.io/changelogs/prometheus-client/ - Repo: https://github.com/prometheus/client_pythonUpdate psutil from 5.9.2 to 5.9.3.
Changelog
### 5.9.3 ``` ===== 2022-10-18 **Enhancements** - 2040_, [macOS]: provide wheels for arm64 architecture. (patch by Matthieu Darbois) **Bug fixes** - 2116_, [macOS], [critical]: `psutil.net_connections`_ fails with RuntimeError. - 2135_, [macOS]: `Process.environ()`_ may contain garbage data. Fix out-of-bounds read around ``sysctl_procargs``. (patch by Bernhard Urban-Forster) - 2138_, [Linux], **[critical]**: can't compile psutil on Android due to undefined ``ethtool_cmd_speed`` symbol. - 2142_, [POSIX]: `net_if_stats()`_ 's ``flags`` on Python 2 returned unicode instead of str. (patch by Matthieu Darbois) - 2147_, [macOS] Fix disk usage report on macOS 12+. (patch by Matthieu Darbois) - 2150_, [Linux] `Process.threads()`_ may raise ``NoSuchProcess``. Fix race condition. (patch by Daniel Li) - 2153_, [macOS] Fix race condition in test_posix.TestProcess.test_cmdline. (patch by Matthieu Darbois) ```Links
- PyPI: https://pypi.org/project/psutil - Changelog: https://pyup.io/changelogs/psutil/ - Repo: https://github.com/giampaolo/psutilUpdate pylint from 2.15.2 to 2.15.5.
The bot wasn't able to find a changelog for this release. Got an idea?
Links
- PyPI: https://pypi.org/project/pylint - Changelog: https://pyup.io/changelogs/pylint/Update pyluach from 2.0.1 to 2.0.2.
Changelog
### 2.0.2 ``` --------------------- * Fix subtracting date from date returning float instead of int. ```Links
- PyPI: https://pypi.org/project/pyluach - Changelog: https://pyup.io/changelogs/pyluach/ - Repo: https://github.com/simlist/pyluachUpdate pytest-asyncio from 0.19.0 to 0.20.1.
Changelog
### 0.20.1 ``` ================= - Fixes an issue that warned about using an old version of pytest, even though the most recent version was installed. `430 <https://github.com/pytest-dev/pytest-asyncio/issues/430>`_ ``` ### 0.20.0 ``` ================= - BREAKING: Removed *legacy* mode. If you're upgrading from v0.19 and you haven't configured ``asyncio_mode = legacy``, you can upgrade without taking any additional action. If you're upgrading from an earlier version or you have explicitly enabled *legacy* mode, you need to switch to *auto* or *strict* mode before upgrading to this version. - Deprecate use of pytest v6. - Fixed an issue which prevented fixture setup from being cached. `404 <https://github.com/pytest-dev/pytest-asyncio/pull/404>`_ ```Links
- PyPI: https://pypi.org/project/pytest-asyncio - Changelog: https://pyup.io/changelogs/pytest-asyncio/ - Repo: https://github.com/pytest-dev/pytest-asyncioUpdate pytest-cov from 3.0.0 to 4.0.0.
Changelog
### 4.0.0 ``` ------------------ **Note that this release drops support for multiprocessing.** * `--cov-fail-under` no longer causes `pytest --collect-only` to fail Contributed by Zac Hatfield-Dodds in `511 <https://github.com/pytest-dev/pytest-cov/pull/511>`_. * Dropped support for multiprocessing (mostly because `issue 82408 <https://github.com/python/cpython/issues/82408>`_). This feature was mostly working but very broken in certain scenarios and made the test suite very flaky and slow. There is builtin multiprocessing support in coverage and you can migrate to that. All you need is this in your ``.coveragerc``:: [run] concurrency = multiprocessing parallel = true sigterm = true * Fixed deprecation in ``setup.py`` by trying to import setuptools before distutils. Contributed by Ben Greiner in `545 <https://github.com/pytest-dev/pytest-cov/pull/545>`_. * Removed undesirable new lines that were displayed while reporting was disabled. Contributed by Delgan in `540 <https://github.com/pytest-dev/pytest-cov/pull/540>`_. * Documentation fixes. Contributed by Andre Brisco in `543 <https://github.com/pytest-dev/pytest-cov/pull/543>`_ and Colin O'Dell in `525 <https://github.com/pytest-dev/pytest-cov/pull/525>`_. * Added support for LCOV output format via `--cov-report=lcov`. Only works with coverage 6.3+. Contributed by Christian Fetzer in `536 <https://github.com/pytest-dev/pytest-cov/issues/536>`_. * Modernized pytest hook implementation. Contributed by Bruno Oliveira in `549 <https://github.com/pytest-dev/pytest-cov/pull/549>`_ and Ronny Pfannschmidt in `550 <https://github.com/pytest-dev/pytest-cov/pull/550>`_. ```Links
- PyPI: https://pypi.org/project/pytest-cov - Changelog: https://pyup.io/changelogs/pytest-cov/ - Repo: https://github.com/pytest-dev/pytest-covUpdate pytz from 2022.2.1 to 2022.5.
The bot wasn't able to find a changelog for this release. Got an idea?
Links
- PyPI: https://pypi.org/project/pytz - Homepage: http://pythonhosted.org/pytz - Docs: https://pythonhosted.org/pytz/Update pyzmq from 23.2.1 to 24.0.1.
The bot wasn't able to find a changelog for this release. Got an idea?
Links
- PyPI: https://pypi.org/project/pyzmq - Docs: https://pyzmq.readthedocs.orgUpdate QtPy from 2.2.0 to 2.2.1.
Changelog
### 2.2.1 ``` Issues Closed * [Issue 369](https://github.com/spyder-ide/qtpy/issues/369) - Release QtPy 2.2.1 * [Issue 365](https://github.com/spyder-ide/qtpy/issues/365) - Additions needed for PySide6/PyQt6 support (`QFontMetricsF.width`, `QLineEdit.getTextMargins` and `QtWidgets.QUndoCommand`) ([PR 366](https://github.com/spyder-ide/qtpy/pull/366) by [random-developer](https://github.com/random-developer)) In this release 2 issues were closed. Pull Requests Merged * [PR 368](https://github.com/spyder-ide/qtpy/pull/368) - PR: Add missing `self` for `QtBindingsNotFoundError` definition, by [dalthviz](https://github.com/dalthviz) * [PR 366](https://github.com/spyder-ide/qtpy/pull/366) - PR: Aliased `QUndoCommand`, provided `QLineEdit.getTextMargins()` and `QFontMetricsF.width()`, by [random-developer](https://github.com/random-developer) ([365](https://github.com/spyder-ide/qtpy/issues/365)) * [PR 363](https://github.com/spyder-ide/qtpy/pull/363) - PR: Fix typo in Qt flags in Readme, by [Czaki](https://github.com/Czaki) * [PR 362](https://github.com/spyder-ide/qtpy/pull/362) - PR: Fix various minor typos found with Codespell, by [luzpaz](https://github.com/luzpaz) * [PR 361](https://github.com/spyder-ide/qtpy/pull/361) - PR: toPython helpers for QDate and QTime, by [bob-schumaker](https://github.com/bob-schumaker) * [PR 360](https://github.com/spyder-ide/qtpy/pull/360) - CI: Ensure conda-forge channel usage when testing with conda, by [dalthviz](https://github.com/dalthviz) In this release 6 pull requests were closed. ---- ```Links
- PyPI: https://pypi.org/project/qtpy - Changelog: https://pyup.io/changelogs/qtpy/ - Repo: https://github.com/spyder-ide/qtpyUpdate readme-renderer from 37.1 to 37.2.
Changelog
### 37.2 ``` * Allow HTML5 `s` tag through cleaner (261) ```Links
- PyPI: https://pypi.org/project/readme-renderer - Changelog: https://pyup.io/changelogs/readme-renderer/ - Repo: https://github.com/pypa/readme_rendererUpdate requests-toolbelt from 0.9.1 to 0.10.0.
Changelog
### 0.10.0 ``` ------------------- New Features ~~~~~~~~~~~~ - Add support for preparing requests in BaseUrlSession Fixed Bugs ~~~~~~~~~~ - Fixing missing newline in dump utility ```Links
- PyPI: https://pypi.org/project/requests-toolbelt - Changelog: https://pyup.io/changelogs/requests-toolbelt/ - Docs: https://toolbelt.readthedocs.io/Update scipy from 1.9.1 to 1.9.3.
Changelog
### 1.9.2 ``` compared to `1.9.1`. It also provides wheels for Python `3.11` on several platforms. Authors ======= * Hood Chatham (1) * Thomas J. Fan (1) * Ralf Gommers (22) * Matt Haberland (5) * Julien Jerphanion (1) * Loïc Estève (1) * Nicholas McKibben (2) * Naoto Mizuno (1) * Andrew Nelson (3) * Tyler Reddy (28) * Pamphile Roy (1) * Ewout ter Hoeven (2) * Warren Weckesser (1) * Meekail Zain (1) + A total of 14 people contributed to this release. People with a "+" by their names contributed a patch for the first time. This list of names is automatically generated, and may not be fully complete. ```Links
- PyPI: https://pypi.org/project/scipy - Changelog: https://pyup.io/changelogs/scipy/ - Homepage: https://scipy.org/Update seaborn from 0.12.0 to 0.12.1.
Changelog
### 0.12.1 ``` This is an incremental release that is a recommended upgrade for all users. It addresses a handful of bugs / regressions in v0.12.0 and adds several features and enhancements to the new [objects interface](http://seaborn.pydata.org/tutorial/objects_interface). - Added the `objects.Text` mark (3051). - Added the `objects.Dash` mark (3074). - Added the `objects.Perc` stat (3063). - Added the `objects.Count` stat (3086). - The `objects.Band` and `objects.Range` marks will now cover the full extent of the data if `min` / `max` variables are not explicitly assigned or added in a transform (3056). - The `objects.Jitter` move now applies a small amount of jitter by default (3066). - Axes with a `objects.Nominal` scale now appear like categorical axes in classic seaborn, with fixed margins, no grid, and an inverted y axis (3069). - The `objects.Continuous.label` method now accepts `base=None` to override the default formatter with a log transform (3087). - Marks that sort along the orient axis (e.g. `objects.Line`) now use a stable algorithm (3064). - Added a `label` parameter to `pointplot`, which addresses a regression in 0.12.0 when `pointplot` is passed to `FacetGrid` (3016). - Fixed a bug that caused an exception when more than two layers with the same mappings were added to `objects.Plot` (3055). - Made `objects.PolyFit` robust to missing data (3010). - Fixed a bug in `objects.Plot` that occurred when data assigned to the orient coordinate had zero variance (3084). - Fixed a regression in `kdeplot` where passing `cmap` for an unfilled bivariate plot would raise an exception (3065). - Addressed a performance regression in `lineplot` with a large number of unique x values (3081). - Seaborn no longer contains doctest-style examples, simplifying the testing infrastructure (3034). ```Links
- PyPI: https://pypi.org/project/seaborn - Changelog: https://pyup.io/changelogs/seaborn/Update Sphinx from 5.1.1 to 5.3.0.
Changelog
### 5.3.0 ``` ===================================== * 10759: LaTeX: add :confval:`latex_table_style` and support the ``'booktabs'``, ``'borderless'``, and ``'colorrows'`` styles. (thanks to Stefan Wiehler for initial pull requests 6666, 6671) * 10840: One can cross-reference including an option value like ``:option:`--module=foobar, ``:option:`--module[=foobar] or ``:option:`--module foobar. Patch by Martin Liska. * 10881: autosectionlabel: Record the generated section label to the debug log. * 10268: Correctly URI-escape image filenames. * 10887: domains: Allow sections in all the content of all object description directives (e.g. :rst:dir:`py:function`). Patch by Adam Turner ``` ### 5.2.3 ``` ===================================== * 10878: Fix base64 image embedding in ``sphinx.ext.imgmath`` * 10886: Add ``:nocontentsentry:`` flag and global domain table of contents entry control option. Patch by Adam Turner ``` ### 5.2.2 ``` ===================================== * 10872: Restore link targets for autodoc modules to the top of content. Patch by Dominic Davis-Foster. ``` ### 5.2.1 ``` ===================================== Bugs fixed ---------- * 10861: Always normalise the ``pycon3`` lexer to ``pycon``. * Fix using ``sphinx.ext.autosummary`` with modules containing titles in the module-level docstring. ``` ### 5.2.0.post0 ``` =========================================== * Recreated source tarballs for Debian maintainers. ``` ### 5.2.0 ``` ===================================== Dependencies ------------ * 10356: Sphinx now uses declarative metadata with ``pyproject.toml`` to create packages, using PyPA's ``flit`` project as a build backend. Patch by Adam Turner. Deprecated ---------- * 10843: Support for HTML 4 output. Patch by Adam Turner. Features added -------------- * 10738: napoleon: Add support for docstring types using 'of', like ``type of type``. Example: ``tuple of int``. * 10286: C++, support requires clauses not just between the template parameter lists and the declaration. * 10755: linkcheck: Check the source URL of raw directives that use the ``url`` option. * 10781: Allow :rst:role:`ref` role to be used with definitions and fields. * 10717: HTML Search: Increase priority for full title and subtitle matches in search results * 10718: HTML Search: Save search result score to the HTML element for debugging * 10673: Make toctree accept 'genindex', 'modindex' and 'search' docnames * 6316, 10804: Add domain objects to the table of contents. Patch by Adam Turner * 6692: HTML Search: Include explicit :rst:dir:`index` directive index entries in the search index and search results. Patch by Adam Turner * 10816: imgmath: Allow embedding images in HTML as base64 * 10854: HTML Search: Use browser localstorage for highlight control, stop storing highlight parameters in URL query strings. Patch by Adam Turner. Bugs fixed ---------- * 10723: LaTeX: 5.1.0 has made the 'sphinxsetup' ``verbatimwithframe=false`` become without effect. * 10257: C++, ensure consistent non-specialization template argument representation. * 10729: C++, fix parsing of certain non-type template parameter packs. * 10715: Revert 10520: "Fix" use of sidebar classes in ``agogo.css_t`` ```Links
- PyPI: https://pypi.org/project/sphinx - Changelog: https://pyup.io/changelogs/sphinx/Update sphinx-autodoc-typehints from 1.19.2 to 1.19.4.
The bot wasn't able to find a changelog for this release. Got an idea?
Links
- PyPI: https://pypi.org/project/sphinx-autodoc-typehints - Changelog: https://pyup.io/changelogs/sphinx-autodoc-typehints/Update stack-data from 0.5.0 to 0.5.1.
The bot wasn't able to find a changelog for this release. Got an idea?
Links
- PyPI: https://pypi.org/project/stack-data - Repo: http://github.com/alexmojaki/stack_dataUpdate stevedore from 4.0.0 to 4.1.0.
The bot wasn't able to find a changelog for this release. Got an idea?
Links
- PyPI: https://pypi.org/project/stevedore - Homepage: https://docs.openstack.org/stevedore/latest/Update streamlit from 1.12.2 to 1.13.0.
Changelog
### 1.13.0 ``` None ```Links
- PyPI: https://pypi.org/project/streamlit - Changelog: https://pyup.io/changelogs/streamlit/ - Homepage: https://streamlit.ioUpdate tabulate from 0.8.10 to 0.9.0.
The bot wasn't able to find a changelog for this release. Got an idea?
Links
- PyPI: https://pypi.org/project/tabulate - Changelog: https://pyup.io/changelogs/tabulate/Update tenacity from 8.0.1 to 8.1.0.
The bot wasn't able to find a changelog for this release. Got an idea?
Links
- PyPI: https://pypi.org/project/tenacity - Repo: https://github.com/jd/tenacityUpdate terminado from 0.15.0 to 0.16.0.
Changelog
### 0.16.0 ``` ([Full Changelog](https://github.com/jupyter/terminado/compare/v0.15.0...7210e82a94596d7d8a00577169c09198efbe4633)) Bugs fixed - Fix issue where large stdin writes can cause Tornado to hang [189](https://github.com/jupyter/terminado/pull/189) ([KoopaKing](https://github.com/KoopaKing)) Maintenance and upkeep improvements - Switch to using hatch version [186](https://github.com/jupyter/terminado/pull/186) ([blink1073](https://github.com/blink1073)) - Fix flake8 v5 compat [179](https://github.com/jupyter/terminado/pull/179) ([blink1073](https://github.com/blink1073)) Contributors to this release ([GitHub contributors page for this release](https://github.com/jupyter/terminado/graphs/contributors?from=2022-05-16&to=2022-09-29&type=c)) [blink1073](https://github.com/search?q=repo%3Ajupyter%2Fterminado+involves%3Ablink1073+updated%3A2022-05-16..2022-09-29&type=Issues) | [KoopaKing](https://github.com/search?q=repo%3Ajupyter%2Fterminado+involves%3AKoopaKing+updated%3A2022-05-16..2022-09-29&type=Issues) | [pre-commit-ci](https://github.com/search?q=repo%3Ajupyter%2Fterminado+involves%3Apre-commit-ci+updated%3A2022-05-16..2022-09-29&type=Issues) <!-- <END NEW CHANGELOG ENTRY> --> ```Links
- PyPI: https://pypi.org/project/terminado - Changelog: https://pyup.io/changelogs/terminado/Update tokenize-rt from 4.2.1 to 5.0.0.
The bot wasn't able to find a changelog for this release. Got an idea?
Links
- PyPI: https://pypi.org/project/tokenize-rt - Repo: https://github.com/asottile/tokenize-rtUpdate traitlets from 5.4.0 to 5.5.0.
Changelog
### 5.5.0 ``` * Clean up application typing * Update tests and docs to use non-deprecated functions * Clean up version handling * Prep for jupyter releaser * Format the changelog <!-- <END NEW CHANGELOG ENTRY> --> ```Links
- PyPI: https://pypi.org/project/traitlets - Changelog: https://pyup.io/changelogs/traitlets/Update types-python-dateutil from 2.8.19 to 2.8.19.2.
The bot wasn't able to find a changelog for this release. Got an idea?
Links
- PyPI: https://pypi.org/project/types-python-dateutil - Repo: https://github.com/python/typeshedUpdate types-pytz from 2022.2.1.0 to 2022.5.0.0.
The bot wasn't able to find a changelog for this release. Got an idea?
Links
- PyPI: https://pypi.org/project/types-pytz - Repo: https://github.com/python/typeshedUpdate types-requests from 2.28.10 to 2.28.11.2.
The bot wasn't able to find a changelog for this release. Got an idea?
Links
- PyPI: https://pypi.org/project/types-requests - Repo: https://github.com/python/typeshedUpdate types-tabulate from 0.8.11 to 0.9.0.0.
The bot wasn't able to find a changelog for this release. Got an idea?
Links
- PyPI: https://pypi.org/project/types-tabulate - Repo: https://github.com/python/typeshedUpdate types-urllib3 from 1.26.24 to 1.26.25.1.
The bot wasn't able to find a changelog for this release. Got an idea?
Links
- PyPI: https://pypi.org/project/types-urllib3 - Repo: https://github.com/python/typeshedUpdate typing_extensions from 4.3.0 to 4.4.0.
The bot wasn't able to find a changelog for this release. Got an idea?
Links
- PyPI: https://pypi.org/project/typing-extensionsUpdate tzdata from 2022.2 to 2022.5.
Changelog
### 2022.5 ``` Upstream version 2022e released 2022-10-11T18:13:02+00:00 Briefly: Jordan and Syria switch from +02/+03 with DST to year-round +03. Changes to future timestamps Jordan and Syria are abandoning the DST regime and are changing to permanent +03, so they will not fall back from +03 to +02 on 2022-10-28. (Thanks to Steffen Thorsen and Issam Al-Zuwairi.) Changes to past timestamps On 1922-01-01 Tijuana adopted standard time at 00:00, not 01:00. Changes to past time zone abbreviations and DST flags The temporary advancement of clocks in central Mexico in summer 1931 is now treated as daylight saving time, instead of as two changes to standard time. --- ``` ### 2022.4 ``` Upstream version 2022d released 2022-09-23T19:02:57+00:00 Briefly: Palestine transitions are now Saturdays at 02:00. Simplify three Ukraine zones into one. Changes to future timestamps Palestine now springs forward and falls back at 02:00 on the first Saturday on or after March 24 and October 24, respectively. This means 2022 falls back 10-29 at 02:00, not 10-28 at 01:00. (Thanks to Heba Hamad.) Changes to past timestamps Simplify three Ukraine zones to one, since the post-1970 differences seem to have been imaginary. Move Europe/Uzhgorod and Europe/Zaporozhye to 'backzone'; backward-compatibility links still work, albeit with different timestamps before October 1991. --- ``` ### 2022.3 ``` Upstream version 2022c released 2022-08-16T00:47:18+00:00 Briefly: Work around awk bug in FreeBSD, macOS, etc. Improve tzselect on intercontinental Zones. --- ```Links
- PyPI: https://pypi.org/project/tzdata - Changelog: https://pyup.io/changelogs/tzdata/ - Repo: https://github.com/python/tzdataUpdate yfinance from 0.1.74 to 0.1.81.
Changelog
### 0.1.81 ``` ------ - Fix unhandled tz-cache exception 1107 ``` ### 0.1.80 ``` ------ - Fix `download(ignore_tz=True)` for single ticker 1097 - Fix rare case of error "Cannot infer DST time" 1100 ``` ### 0.1.79 ``` ------ - Fix when Yahoo returns price=NaNs on dividend day ``` ### 0.1.78 ``` ------ - Fix download() when different timezones 1085 ``` ### 0.1.77 ``` ------ - Fix user experience bug 1078 ``` ### 0.1.75 ``` ------ - Fixed datetime-related issues: 1048 - Add 'keepna' argument 1032 - Speedup Ticker() creation 1042 - Improve a bugfix 1033 ```Links
- PyPI: https://pypi.org/project/yfinance - Changelog: https://pyup.io/changelogs/yfinance/ - Repo: https://github.com/ranaroussi/yfinanceUpdate zipp from 3.8.1 to 3.10.0.
Changelog
### 3.10.0 ``` ======= * ``zipp`` is now a package. ``` ### 3.9.1 ``` ====== * Removed 'print' expression in test_pickle. * bpo-43651: Apply ``io.text_encoding`` on Python 3.10 and later. ``` ### 3.9.0 ``` ====== * 81: ``Path`` objects are now pickleable if they've been constructed from pickleable objects. Any restored objects will re-construct the zip file with the original arguments. ```Links
- PyPI: https://pypi.org/project/zipp - Changelog: https://pyup.io/changelogs/zipp/ - Repo: https://github.com/jaraco/zippUpdate nest_asyncio from 1.5.5 to 1.5.6.
The bot wasn't able to find a changelog for this release. Got an idea?
Links
- PyPI: https://pypi.org/project/nest-asyncio - Repo: https://github.com/erdewit/nest_asyncioUpdate pandas_market_calendars from 4.0 to 4.1.0.
Changelog
### 4.1.0 ``` ~~~~~~~~~~~~~~ - Added UK and Australia holidays for Queen Elizabeth II's State Funeral ``` ### 4.0.3 ``` ~~~~~~~~~~~~~~ - Enabled tests that failed before PR 215 ``` ### 4.0.2 ``` ~~~~~~~~~~~~~~ - Implemented new release management ``` ### 4.0.1 ``` ~~~~~~~~~~~~~~ - Fix duplicates bug in special_dates - Fix tz=None bug in NYSEExchangeCalendar.valid_days ```Links
- PyPI: https://pypi.org/project/pandas-market-calendars - Changelog: https://pyup.io/changelogs/pandas-market-calendars/ - Repo: https://github.com/rsheftel/pandas_market_calendars