Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

chore(deps): bump the python-packages group with 15 updates #229

Merged
merged 1 commit into from
Dec 9, 2023

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 9, 2023

Bumps the python-packages group with 15 updates:

Package From To
bleach 6.0.0 6.1.0
certifi 2023.7.22 2023.11.17
charset-normalizer 3.1.0 3.3.2
idna 3.4 3.6
importlib-metadata 6.6.0 7.0.0
jaraco-classes 3.2.3 3.3.0
keyring 23.13.1 24.3.0
markdown-it-py 2.2.0 3.0.0
more-itertools 9.1.0 10.1.0
pygments 2.15.1 2.17.2
readme-renderer 37.3 42.0
rich 13.3.5 13.7.0
tqdm 4.65.0 4.66.1
urllib3 2.0.7 2.1.0
zipp 3.15.0 3.17.0

Updates bleach from 6.0.0 to 6.1.0

Changelog

Sourced from bleach's changelog.

Version 6.1.0 (October 6th, 2023)

Backwards incompatible changes

  • Dropped support for Python 3.7. (#709)

Security fixes

None

Bug fixes

  • Add support for Python 3.12. (#710)
  • Fix linkify with arrays in querystring (#436)
  • Handle more cases with < followed by character data (#705)
  • Fix entities inside a tags in linkification (#704)
  • Update cap for tinycss2 to <1.3 (#702)
  • Updated Sphinx requirement
  • Add dependabot for github actions and update github actions
Commits
  • c04958d Fix spelling error
  • 90441da Update for v6.1.0 release
  • c4a4eba Fix linkify with arrays in querystring (#436)
  • 11d8c9b Handle more cases with < folloed by character data (#705)
  • b56aa7c Fix entities inside a tags in linkification (#704)
  • 6f0aaaa Update cap for tinycss2 to <1.3 (#702)
  • b60bae4 Remove docs/requirements.txt from manifest
  • 68a62c0 Fix Sphinx requirement and update it
  • bf88908 Bump actions/checkout from 3 to 4
  • cdaa9cb Add dependabot for github actions
  • Additional commits viewable in compare view

Updates certifi from 2023.7.22 to 2023.11.17

Commits
  • 515962b Merge pull request #252 from certifi/create-pull-request/patch
  • 28b2a0d 2023.11.17
  • 7ccda9f Bump actions/checkout from 4.1.0 to 4.1.1 (#251)
  • 5e4bb9e Bump actions/setup-python from 4.7.0 to 4.7.1 (#248)
  • 610354f Bump actions/checkout from 4.0.0 to 4.1.0 (#247)
  • 2d98c76 Bump actions/upload-artifact from 3.1.2 to 3.1.3 (#246)
  • 7f0e639 ci: add minimal permissions to workflows bump.yml and release.yml (#245)
  • 600713d Bump actions/checkout from 3.6.0 to 4.0.0 (#244)
  • 0435b2a Bump actions/checkout from 3.5.3 to 3.6.0 (#242)
  • 25ea83a Fix bash
  • Additional commits viewable in compare view

Updates charset-normalizer from 3.1.0 to 3.3.2

Release notes

Sourced from charset-normalizer's releases.

Version 3.3.2

3.3.2 (2023-10-31)

Fixed

  • Unintentional memory usage regression when using large payloads that match several encodings (#376)
  • Regression on some detection cases showcased in the documentation (#371)

Added

  • Noise (md) probe that identifies malformed Arabic representation due to the presence of letters in isolated form (credit to my wife, thanks!)

Version 3.3.1

3.3.1 (2023-10-22)

Changed

  • Optional mypyc compilation upgraded to version 1.6.1 for Python >= 3.8
  • Improved the general detection reliability based on reports from the community

Release 3.3.0

3.3.0 (2023-09-30)

Added

  • Allow to execute the CLI (e.g. normalizer) through python -m charset_normalizer.cli or python -m charset_normalizer
  • Support for 9 forgotten encodings that are supported by Python but unlisted in encoding.aliases as they have no alias (#323)

Removed

  • (internal) Redundant utils.is_ascii function and unused function is_private_use_only
  • (internal) charset_normalizer.assets is moved inside charset_normalizer.constant

Changed

  • (internal) Unicode code blocks in constants are updated using the latest v15.0.0 definition to improve detection
  • Optional mypyc compilation upgraded to version 1.5.1 for Python >= 3.8

Fixed

  • Unable to properly sort CharsetMatch when both chaos/noise and coherence were close due to an unreachable condition in __lt__ (#350)

Version 3.2.0

3.2.0 (2023-06-07)

Changed

  • Typehint for function from_path no longer enforce PathLike as its first argument
  • Minor improvement over the global detection reliability

Added

  • Introduce function is_binary that relies on main capabilities, and is optimized to detect binaries
  • Propagate enable_fallback argument throughout from_bytes, from_path, and from_fp that allow a deeper control over the detection (default True)
  • Explicit support for Python 3.12

Fixed

  • Edge case detection failure where a file would contain 'very-long' camel-cased word (Issue #289)
Changelog

Sourced from charset-normalizer's changelog.

3.3.2 (2023-10-31)

Fixed

  • Unintentional memory usage regression when using large payload that match several encoding (#376)
  • Regression on some detection case showcased in the documentation (#371)

Added

  • Noise (md) probe that identify malformed arabic representation due to the presence of letters in isolated form (credit to my wife)

3.3.1 (2023-10-22)

Changed

  • Optional mypyc compilation upgraded to version 1.6.1 for Python >= 3.8
  • Improved the general detection reliability based on reports from the community

3.3.0 (2023-09-30)

Added

  • Allow to execute the CLI (e.g. normalizer) through python -m charset_normalizer.cli or python -m charset_normalizer
  • Support for 9 forgotten encoding that are supported by Python but unlisted in encoding.aliases as they have no alias (#323)

Removed

  • (internal) Redundant utils.is_ascii function and unused function is_private_use_only
  • (internal) charset_normalizer.assets is moved inside charset_normalizer.constant

Changed

  • (internal) Unicode code blocks in constants are updated using the latest v15.0.0 definition to improve detection
  • Optional mypyc compilation upgraded to version 1.5.1 for Python >= 3.8

Fixed

  • Unable to properly sort CharsetMatch when both chaos/noise and coherence were close due to an unreachable condition in __lt__ (#350)

3.2.0 (2023-06-07)

Changed

  • Typehint for function from_path no longer enforce PathLike as its first argument
  • Minor improvement over the global detection reliability

Added

  • Introduce function is_binary that relies on main capabilities, and optimized to detect binaries
  • Propagate enable_fallback argument throughout from_bytes, from_path, and from_fp that allow a deeper control over the detection (default True)
  • Explicit support for Python 3.12

Fixed

  • Edge case detection failure where a file would contain 'very-long' camel cased word (Issue #289)
Commits
  • 79dce48 🐛 Regression on some detection case showcased in the documentation (#371)...
  • a4b9b01 Bump github/codeql-action from 2.22.4 to 2.22.5 (#375)
  • dcc01cc Bump ossf/scorecard-action from 2.3.0 to 2.3.1 (#374)
  • 9cd402c Bump pytest from 7.4.2 to 7.4.3 (#373)
  • e274dcc 🐛 Fix unintentional memory usage regression when using large payload that...
  • 07f3041 ⬆️ Bump github/codeql-action from 2.22.3 to 2.22.4 (#370)
  • 5208644 🔖 Release 3.3.1 (#367)
  • 66966f1 ❇️ Improve the detection around some cases (#366)
  • 49653a6 ⬆️ Bump actions/setup-python from 4.7.0 to 4.7.1 (#359)
  • f6a66ed ⬆️ Bump pypa/cibuildwheel from 2.16.0 to 2.16.2 (#361)
  • Additional commits viewable in compare view

Updates idna from 3.4 to 3.6

Changelog

Sourced from idna's changelog.

3.6 (2023-11-25) ++++++++++++++++

  • Fix regression to include tests in source distribution.

3.5 (2023-11-24) ++++++++++++++++

  • Update to Unicode 15.1.0
  • String codec name is now "idna2008" as overriding the system codec "idna" was not working.
  • Fix typing error for codec encoding
  • "setup.cfg" has been added for this release due to some downstream lack of adherence to PEP 517. Should be removed in a future release so please prepare accordingly.
  • Removed reliance on a symlink for the "idna-data" tool to comport with PEP 517 and the Python Packaging User Guide for sdist archives.
  • Added security reporting protocol for project

Thanks Jon Ribbens, Diogo Teles Sant'Anna, Wu Tingfeng for contributions to this release.

Commits

Updates importlib-metadata from 6.6.0 to 7.0.0

Changelog

Sourced from importlib-metadata's changelog.

v7.0.0

Deprecations and Removals

  • Removed EntryPoint access by numeric index (tuple behavior).

v6.11.0

Features

  • Added Distribution.origin supplying the direct_url.json in a SimpleNamespace. (#404)

v6.10.0

Features

  • Added diagnose script. (#461)

v6.9.0

Features

  • Added EntryPoints.repr (#473)

v6.8.0

Features

  • Require Python 3.8 or later.

v6.7.0

  • #453: When inferring top-level names that are importable for distributions in package_distributions, now symlinks to

... (truncated)

Commits
  • fb492e1 Finalize
  • 37113c2 Removed EntryPoint access by numeric index (tuple behavior).
  • 84418f8 Finalize
  • 537349c Merge pull request #465 from python/feature/origin
  • 51b3be4 Merge branch 'main' into feature/origin
  • e886c99 Use a SiteBuilder class to build files in the site, traversing the class hier...
  • f480907 Add test capturing expectation. Ref #404
  • 8439918 Add changelog
  • 7238302 Restore pypy tests now that 3.10 is the standard. Bypasses issue in #463.
  • 02bbfb0 Finalize
  • Additional commits viewable in compare view

Updates jaraco-classes from 3.2.3 to 3.3.0

Changelog

Sourced from jaraco-classes's changelog.

v3.3.0

Features

  • Require Python 3.8 or later.
Commits

Updates keyring from 23.13.1 to 24.3.0

Changelog

Sourced from keyring's changelog.

v24.3.0

Features

  • Added bash completion support. (#643)

v24.2.0

Features

  • Require Python 3.8 or later.

v24.1.1

Bugfixes

  • Restore support for reading from a config file (with regression test). (#638)

v24.1.0

Bugfixes

  • Avoid logging warning when no config file is present. (#635)
  • Include all operations in the error message if no operation was supplied. (#636)

Improved Documentation

  • Correct name of macOS backend in README. (#637)

v24.0.1

Misc

... (truncated)

Commits

Updates markdown-it-py from 2.2.0 to 3.0.0

Release notes

Sourced from markdown-it-py's releases.

v3.0.0 Release

⚠️ This release contains some minor breaking changes in the internal API and improvements to the parsing strictness.

Full Changelog: executablebooks/markdown-it-py@v2.2.0...v3.0.0

⬆️ UPGRADE: Drop support for Python 3.7

Also add testing for Python 3.11

⬆️ UPGRADE: Update from upstream markdown-it 12.2.0 to 13.0.0

A key change is the addition of a new Token type, text_special, which is used to represent HTML entities and backslash escaped characters. This ensures that (core) typographic transformation rules are not incorrectly applied to these texts. The final core rule is now the new text_join rule, which joins adjacent text/text_special tokens, and so no text_special tokens should be present in the final token stream. Any custom typographic rules should be inserted before text_join.

A new linkify rule has also been added to the inline chain, which will linkify full URLs (e.g. https://example.com), and fixes collision of emphasis and linkifier (so http://example.org/foo._bar_-_baz is now a single link, not emphasized). Emails and fuzzy links are not affected by this.

  • ♻️ Refactor backslash escape logic, add text_special #276
  • ♻️ Parse entities to text_special token #280
  • ♻️ Refactor: Add linkifier rule to inline chain for full links #279
  • ‼️ Remove (p) => § replacement in typographer #281
  • ‼️ Remove unused silent arg in ParserBlock.tokenize #284
  • 🐛 FIX: numeric character reference passing #272
  • 🐛 Fix: tab preventing paragraph continuation in lists #274
  • 👌 Improve nested emphasis parsing #273
  • 👌 fix possible ReDOS in newline rule #275
  • 👌 Improve performance of skipSpaces/skipChars #271
  • 👌 Show text of text_special in tree.pretty #282

♻️ REFACTOR: Replace most character code use with strings

The use of StateBase.srcCharCode is deprecated (with backward-compatibility), and all core uses are replaced by StateBase.src.

Conversion of source string characters to an integer representing the Unicode character is prevalent in the upstream JavaScript implementation, to improve performance. However, it is unnecessary in Python and leads to harder to read code and performance deprecations (during the conversion in the StateBase initialisation).

See #270, thanks to @​hukkinj1.

♻️ Centralise indented code block tests

For CommonMark, the presence of indented code blocks prevent any other block element from having an indent of greater than 4 spaces. Certain Markdown flavors and derivatives, such as mdx and djot, disable these code blocks though, since it is more common to use code fences and/or arbitrary indenting is desirable. Previously, disabling code blocks did not remove the indent limitation, since most block elements had the 3 space limitation hard-coded. This change centralised the logic of applying this limitation (in StateBlock.is_code_block), and only applies it when indented code blocks are enabled.

... (truncated)

Changelog

Sourced from markdown-it-py's changelog.

3.0.0 - 2023-06-03

⚠️ This release contains some minor breaking changes in the internal API and improvements to the parsing strictness.

Full Changelog: executablebooks/markdown-it-py@v2.2.0...v3.0.0

⬆️ UPGRADE: Drop support for Python 3.7

Also add testing for Python 3.11

Commits
  • bee6d19 🚀 RELEASE: v3.0.0 (#286)
  • e146728 📚 Update docs (#285)
  • 4c3a34d ‼️ Remove unused silent arg in ParserBlock.tokenize (#284)
  • 90b367d 🔧 Add typing of rule functions (#283)
  • 64965cf 👌 Show text of text_special in tree.pretty (#282)
  • dd51f62 ‼️ Remove (p) => § replacement in typographer (#281)
  • d5b3874 ♻️ Parse entities to text_special token (#280)
  • ea27cc8 ♻️ Refactor: Add linkifier rule to inline chain for full links (#279)
  • ba96f34 ♻️ Refactor backslash escape logic (#276)
  • 500e69e 👌 fix possible ReDOS in newline rule (#275)
  • Additional commits viewable in compare view

Updates more-itertools from 9.1.0 to 10.1.0

Release notes

Sourced from more-itertools's releases.

Version 10.1.0

What's Changed

New Contributors

Full Changelog: more-itertools/more-itertools@v10.0.1...v10.1.0

Version 10.0.1 (docs only)

This is a docs-only release. There are no changes to the code in the package, and no changes distributed to PyPI. See PR #738 for details.

Version 10.0.0

What's Changed

New Contributors

... (truncated)

Commits
  • 266ebdc Merge pull request #747 from more-itertools/version-10.1.0
  • e470f77 Doc updates for 10.1.0
  • cc8a8ab Bump version: 10.0.0 → 10.1.0
  • 65db6f8 Merge pull request #746 from obaltian/fix-consume-type-annotation
  • e40f679 fix consume() type annotation
  • ff2a90f Merge pull request #744 from pochmann/patch-5
  • 5fd6c67 Add empty line
  • 0ee59bd Simplify _zip_equal
  • 3e1b301 Merge pull request #742 from pochmann/patch-5
  • 415b05b Merge branch 'more-itertools:master' into patch-5
  • Additional commits viewable in compare view

Updates pygments from 2.15.1 to 2.17.2

Release notes

Sourced from pygments's releases.

2.17.2

  • Fix a packaging issue on macOS (#2593)

2.17.1

  • Updated lexers:

    • TOML: Fix bug making lexing of single-quoted strings too eager

2.17.0

  • New lexers:

  • Updated lexers:

    • Cypher: fix comment matching, add missing keywords (#2504)
    • Fortran: add elseif keyword (#2528)
    • Lean: make it available as lean3, in preparation for a possible switch to lean highlighting as Lean 4 (#2546)
    • JSON: add MIME types and file extensions for several line-delimited JSON formats (#2490)
    • Nix: many improvements (#2551, #1800)
    • OCaml: Add and keyword, remove value from keywords (#2521)
    • Python: add starlark and bazel aliases (#2517, #2516)
    • Snowball: Treat len like size (#2508)
    • Spice: add panic keyword and -> operator (#2510)
    • squid.conf: fix catastrophic backtracking (#2583)
    • TOML: rewritten, with many fixes (#2576)
    • Turtle: support blank nodes (#2581)
    • Wikitext: fix erroneous highlighting of LanguageConverter markup (#2493), add missing variant languages (#2494)
    • CMake: support [=[ bracketed arguments ]=] (#2549)
  • Fix ctags support and tests (#2487)

  • Include Lexer.add_filter in the documentation (#2519)

  • Add a Lean3Lexer alias (#2546)

  • The pygments.styles module contains a new STYLES variable with a dictionary of built-in styles. The old STYLE_MAP variable, which uses a different format, is kept for backwards compatibility.

  • On Windows, add a new installation extra (windows-terminal) which pulls in dependencies for colored console output. See :doc:cmdline for more details. (#2505)

  • Support more file types in autopygmentize script (#2513)

  • Change color of numbers in rrt style (#2526)

  • Fix error when trying to look up plugin formatters by file extension of the output format (#2563)

  • Use Hatchling as a build backend instead of setuptools. This change is transparent to most users. Distribution packagers who build without build isolation need to add hatchling as a build dependency and remove setuptools. People downloading source distributions and wheels from PyPI directly should note that they now have pygments in their file names instead of Pygments. (#2573)

  • Improve the test framework to also check for lost tokens when processing the snippets and example files (#2582.)

  • Improve the Dracula style definition to make it easier to maintain (#2575)

... (truncated)

Changelog

Sourced from pygments's changelog.

Version 2.17.2

(released November 21, 2023)

  • Fix a packaging issue on macOS (#2593)

Version 2.17.1

(released November 19, 2023)

  • Updated lexers:

    • TOML: Fix bug making lexing of single-quoted strings too eager

Version 2.17.0

(released November 18, 2023)

  • New lexers:

  • Updated lexers:

    • Cypher: fix comment matching, add missing keywords (#2504)
    • Fortran: add elseif keyword (#2528)
    • Lean: make it available as lean3, in preparation for a possible switch to lean highlighting as Lean 4 (#2546)
    • JSON: add MIME types and file extensions for several line-delimited JSON formats (#2490)
    • Nix: many improvements (#2551, #1800)
    • OCaml: Add and keyword, remove value from keywords (#2521)
    • Python: add starlark and bazel aliases (#2517, #2516)
    • Snowball: Treat len like size (#2508)
    • Spice: add panic keyword and -> operator (#2510)
    • squid.conf: fix catastrophic backtracking (#2583)
    • TOML: rewritten, with many fixes (#2576)
    • Turtle: support blank nodes (#2581)
    • Wikitext: fix erroneous highlighting of LanguageConverter markup (#2493), add missing variant languages (#2494)
    • CMake: support [=[ bracketed arguments ]=] (#2549)
  • Fix ctags support and tests (#2487)

  • Include Lexer.add_filter in the documentation (#2519)

... (truncated)

Commits
  • ee30ce1 Only select pygments/ in wheels, not in sdists
  • 9adeef6 Prepare 2.17.2 hotfix release.
  • 639bfcf Fix building from source on macOS (#2593)
  • f5eb039 Prepare 2.17.1 hotfix release.
  • 0c66899 Update CHANGES
  • 220a2a9 TOML: fix bug with eager literal strings
  • 5cf7389 Another formatting fix in CHANGES.
  • 5874c34 Fix code formatting in the CHANGES file.
  • 49090a3 Prepare for next release.
  • 26e29a6 Bump version number.
  • Additional commits viewable in compare view

Updates readme-renderer from 37.3 to 42.0

Release notes

Sourced from readme-renderer's releases.

42.0

What's Changed

New Contributors

Full Changelog: pypa/readme_renderer@41.0...42.0

41.0

What's Changed

@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Dec 9, 2023
@josegonzalez
Copy link
Owner

@dependabot rebase

Bumps the python-packages group with 15 updates:

| Package | From | To |
| --- | --- | --- |
| [bleach](https://github.com/mozilla/bleach) | `6.0.0` | `6.1.0` |
| [certifi](https://github.com/certifi/python-certifi) | `2023.7.22` | `2023.11.17` |
| [charset-normalizer](https://github.com/Ousret/charset_normalizer) | `3.1.0` | `3.3.2` |
| [idna](https://github.com/kjd/idna) | `3.4` | `3.6` |
| [importlib-metadata](https://github.com/python/importlib_metadata) | `6.6.0` | `7.0.0` |
| [jaraco-classes](https://github.com/jaraco/jaraco.classes) | `3.2.3` | `3.3.0` |
| [keyring](https://github.com/jaraco/keyring) | `23.13.1` | `24.3.0` |
| [markdown-it-py](https://github.com/executablebooks/markdown-it-py) | `2.2.0` | `3.0.0` |
| [more-itertools](https://github.com/more-itertools/more-itertools) | `9.1.0` | `10.1.0` |
| [pygments](https://github.com/pygments/pygments) | `2.15.1` | `2.17.2` |
| [readme-renderer](https://github.com/pypa/readme_renderer) | `37.3` | `42.0` |
| [rich](https://github.com/Textualize/rich) | `13.3.5` | `13.7.0` |
| [tqdm](https://github.com/tqdm/tqdm) | `4.65.0` | `4.66.1` |
| [urllib3](https://github.com/urllib3/urllib3) | `2.0.7` | `2.1.0` |
| [zipp](https://github.com/jaraco/zipp) | `3.15.0` | `3.17.0` |


Updates `bleach` from 6.0.0 to 6.1.0
- [Changelog](https://github.com/mozilla/bleach/blob/main/CHANGES)
- [Commits](mozilla/bleach@v6.0.0...v6.1.0)

Updates `certifi` from 2023.7.22 to 2023.11.17
- [Commits](certifi/python-certifi@2023.07.22...2023.11.17)

Updates `charset-normalizer` from 3.1.0 to 3.3.2
- [Release notes](https://github.com/Ousret/charset_normalizer/releases)
- [Changelog](https://github.com/Ousret/charset_normalizer/blob/master/CHANGELOG.md)
- [Commits](jawah/charset_normalizer@3.1.0...3.3.2)

Updates `idna` from 3.4 to 3.6
- [Changelog](https://github.com/kjd/idna/blob/master/HISTORY.rst)
- [Commits](kjd/idna@v3.4...v3.6)

Updates `importlib-metadata` from 6.6.0 to 7.0.0
- [Release notes](https://github.com/python/importlib_metadata/releases)
- [Changelog](https://github.com/python/importlib_metadata/blob/main/NEWS.rst)
- [Commits](python/importlib_metadata@v6.6.0...v7.0.0)

Updates `jaraco-classes` from 3.2.3 to 3.3.0
- [Release notes](https://github.com/jaraco/jaraco.classes/releases)
- [Changelog](https://github.com/jaraco/jaraco.classes/blob/main/NEWS.rst)
- [Commits](jaraco/jaraco.classes@v3.2.3...v3.3.0)

Updates `keyring` from 23.13.1 to 24.3.0
- [Release notes](https://github.com/jaraco/keyring/releases)
- [Changelog](https://github.com/jaraco/keyring/blob/main/NEWS.rst)
- [Commits](jaraco/keyring@v23.13.1...v24.3.0)

Updates `markdown-it-py` from 2.2.0 to 3.0.0
- [Release notes](https://github.com/executablebooks/markdown-it-py/releases)
- [Changelog](https://github.com/executablebooks/markdown-it-py/blob/master/CHANGELOG.md)
- [Commits](executablebooks/markdown-it-py@v2.2.0...v3.0.0)

Updates `more-itertools` from 9.1.0 to 10.1.0
- [Release notes](https://github.com/more-itertools/more-itertools/releases)
- [Commits](more-itertools/more-itertools@v9.1.0...v10.1.0)

Updates `pygments` from 2.15.1 to 2.17.2
- [Release notes](https://github.com/pygments/pygments/releases)
- [Changelog](https://github.com/pygments/pygments/blob/master/CHANGES)
- [Commits](pygments/pygments@2.15.1...2.17.2)

Updates `readme-renderer` from 37.3 to 42.0
- [Release notes](https://github.com/pypa/readme_renderer/releases)
- [Changelog](https://github.com/pypa/readme_renderer/blob/main/CHANGES.rst)
- [Commits](pypa/readme_renderer@37.3...42.0)

Updates `rich` from 13.3.5 to 13.7.0
- [Release notes](https://github.com/Textualize/rich/releases)
- [Changelog](https://github.com/Textualize/rich/blob/master/CHANGELOG.md)
- [Commits](Textualize/rich@v13.3.5...v13.7.0)

Updates `tqdm` from 4.65.0 to 4.66.1
- [Release notes](https://github.com/tqdm/tqdm/releases)
- [Commits](tqdm/tqdm@v4.65.0...v4.66.1)

Updates `urllib3` from 2.0.7 to 2.1.0
- [Release notes](https://github.com/urllib3/urllib3/releases)
- [Changelog](https://github.com/urllib3/urllib3/blob/main/CHANGES.rst)
- [Commits](urllib3/urllib3@2.0.7...2.1.0)

Updates `zipp` from 3.15.0 to 3.17.0
- [Release notes](https://github.com/jaraco/zipp/releases)
- [Changelog](https://github.com/jaraco/zipp/blob/main/NEWS.rst)
- [Commits](jaraco/zipp@v3.15.0...v3.17.0)

---
updated-dependencies:
- dependency-name: bleach
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-packages
- dependency-name: certifi
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-packages
- dependency-name: charset-normalizer
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-packages
- dependency-name: idna
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-packages
- dependency-name: importlib-metadata
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: python-packages
- dependency-name: jaraco-classes
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-packages
- dependency-name: keyring
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: python-packages
- dependency-name: markdown-it-py
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: python-packages
- dependency-name: more-itertools
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: python-packages
- dependency-name: pygments
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-packages
- dependency-name: readme-renderer
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: python-packages
- dependency-name: rich
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-packages
- dependency-name: tqdm
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-packages
- dependency-name: urllib3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-packages
- dependency-name: zipp
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-packages
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/pip/python-packages-6492013e8e branch from e8fe37d to 500c97c Compare December 9, 2023 18:30
@josegonzalez josegonzalez merged commit a97f15b into master Dec 9, 2023
1 check passed
@josegonzalez josegonzalez deleted the dependabot/pip/python-packages-6492013e8e branch December 9, 2023 18:30
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant