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

Bump the poetry-dependencies group with 13 updates #106

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 27, 2023

Bumps the poetry-dependencies group with 13 updates:

Package From To
pygments 2.16.1 2.17.2
mypy 1.7.0 1.7.1
ruff 0.1.5 0.1.6
sphinx-click 5.0.1 5.1.0
certifi 2023.7.22 2023.11.17
exceptiongroup 1.1.3 1.2.0
identify 2.5.31 2.5.32
idna 3.4 3.6
ipython 8.17.2 8.18.0
pexpect 4.8.0 4.9.0
platformdirs 3.11.0 4.0.0
setuptools 68.2.2 69.0.2
wcwidth 0.2.10 0.2.12

Updates pygments from 2.16.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)

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 mypy from 1.7.0 to 1.7.1

Commits

Updates ruff from 0.1.5 to 0.1.6

Release notes

Sourced from ruff's releases.

v0.1.6

Changes

0.1.6

Preview features

  • [flake8-boolean-trap] Extend boolean-type-hint-positional-argument (FBT001) to include booleans in unions (#7501)
  • [flake8-pie] Extend reimplemented-list-builtin (PIE807) to dict reimplementations (#8608)
  • [flake8-pie] Extend unnecessary-pass (PIE790) to include ellipses (...) (#8641)
  • [flake8-pie] Implement fix for unnecessary-spread (PIE800) (#8668)
  • [flake8-quotes] Implement unnecessary-escaped-quote (Q004) (#8630)
  • [pycodestyle] Implement fix for multiple-spaces-after-keyword (E271) and multiple-spaces-before-keyword (E272) (#8622)
  • [pycodestyle] Implement fix for multiple-spaces-after-operator (E222) and multiple-spaces-before-operator (E221) (#8623)
  • [pyflakes] Extend is-literal (F632) to include comparisons against mutable initializers (#8607)
  • [pylint] Implement redefined-argument-from-local (PLR1704) (#8159)
  • [pylint] Implement fix for unnecessary-lambda (PLW0108) (#8621)
  • [refurb] Implement if-expr-min-max (FURB136) (#8664)
  • [refurb] Implement math-constant (FURB152) (#8727)

Rule changes

  • [flake8-annotations] Add autotyping-like return type inference for annotation rules (#8643)
  • [flake8-future-annotations] Implement fix for future-required-type-annotation (FA102) (#8711)
  • [flake8-implicit-namespace-package] Avoid missing namespace violations in scripts with shebangs (#8710)
  • [pydocstyle] Update over-indentation (D208) to preserve indentation offsets when fixing overindented lines (#8699)
  • [pyupgrade] Refine timeout-error-alias (UP041) to remove false positives (#8587)

Formatter

  • Fix instability in await formatting with fluent style (#8676)
  • Compare formatted and unformatted ASTs during formatter tests (#8624)
  • Preserve trailing semicolon for Notebooks (#8590)

CLI

  • Improve debug printing for resolving origin of config settings (#8729)
  • Write unchanged, excluded files to stdout when read via stdin (#8596)

Configuration

  • [isort] Support disabling sections with no-sections = true (#8657)
  • [pep8-naming] Support local and dynamic class- and static-method decorators (#8592)
  • [pydocstyle] Allow overriding pydocstyle convention rules (#8586)

Bug fixes

  • Avoid syntax error via importing trio.lowlevel (#8730)
  • Omit unrolled augmented assignments in PIE794 (#8634)
  • Slice source code instead of generating it for EM fixes (#7746)

... (truncated)

Changelog

Sourced from ruff's changelog.

0.1.6

Preview features

  • [flake8-boolean-trap] Extend boolean-type-hint-positional-argument (FBT001) to include booleans in unions (#7501)
  • [flake8-pie] Extend reimplemented-list-builtin (PIE807) to dict reimplementations (#8608)
  • [flake8-pie] Extend unnecessary-pass (PIE790) to include ellipses (...) (#8641)
  • [flake8-pie] Implement fix for unnecessary-spread (PIE800) (#8668)
  • [flake8-quotes] Implement unnecessary-escaped-quote (Q004) (#8630)
  • [pycodestyle] Implement fix for multiple-spaces-after-keyword (E271) and multiple-spaces-before-keyword (E272) (#8622)
  • [pycodestyle] Implement fix for multiple-spaces-after-operator (E222) and multiple-spaces-before-operator (E221) (#8623)
  • [pyflakes] Extend is-literal (F632) to include comparisons against mutable initializers (#8607)
  • [pylint] Implement redefined-argument-from-local (PLR1704) (#8159)
  • [pylint] Implement fix for unnecessary-lambda (PLW0108) (#8621)
  • [refurb] Implement if-expr-min-max (FURB136) (#8664)
  • [refurb] Implement math-constant (FURB152) (#8727)

Rule changes

  • [flake8-annotations] Add autotyping-like return type inference for annotation rules (#8643)
  • [flake8-future-annotations] Implement fix for future-required-type-annotation (FA102) (#8711)
  • [flake8-implicit-namespace-package] Avoid missing namespace violations in scripts with shebangs (#8710)
  • [pydocstyle] Update over-indentation (D208) to preserve indentation offsets when fixing overindented lines (#8699)
  • [pyupgrade] Refine timeout-error-alias (UP041) to remove false positives (#8587)

Formatter

  • Fix instability in await formatting with fluent style (#8676)
  • Compare formatted and unformatted ASTs during formatter tests (#8624)
  • Preserve trailing semicolon for Notebooks (#8590)

CLI

  • Improve debug printing for resolving origin of config settings (#8729)
  • Write unchanged, excluded files to stdout when read via stdin (#8596)

Configuration

  • [isort] Support disabling sections with no-sections = true (#8657)
  • [pep8-naming] Support local and dynamic class- and static-method decorators (#8592)
  • [pydocstyle] Allow overriding pydocstyle convention rules (#8586)

Bug fixes

  • Avoid syntax error via importing trio.lowlevel (#8730)
  • Omit unrolled augmented assignments in PIE794 (#8634)
  • Slice source code instead of generating it for EM fixes (#7746)
  • Allow whitespace around colon in slices for whitespace-before-punctuation (E203) (#8654)
  • Use function range for no-self-use (#8637)
  • F-strings doesn't contain bytes literal for PLW0129 (#8675)

... (truncated)

Commits
  • f460f9c Bump version to v0.1.6 (#8744)
  • 2faac1e [refurb] Implement math-constant (FURB152) (#8727)
  • b7dbb90 Remove incorrect deprecation label for stdout and stderr (#8743)
  • 66794bc Remove erroneous bad-dunder-name reference (#8742)
  • dca430f Fix instability with await fluent style (#8676)
  • 841e6c8 Add River in "Who's Using Ruff?" section (#8740)
  • bd99175 Update D208 to preserve indentation offsets when fixing overindented lines ...
  • 4c86b15 Fix typo (#8735)
  • e2109c1 Improve debug printing for resolving origin of config settings (#8729)
  • 1fcccf8 Avoid syntax error via importing trio.lowlevel (#8730)
  • Additional commits viewable in compare view

Updates sphinx-click from 5.0.1 to 5.1.0

Commits

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 exceptiongroup from 1.1.3 to 1.2.0

Release notes

Sourced from exceptiongroup's releases.

1.2.0

  • Added special monkeypatching if Apport has overridden sys.excepthook so it will format exception groups correctly (PR by John Litborn)
  • Added a backport of contextlib.suppress() from Python 3.12.1 which also handles suppressing exceptions inside exception groups
  • Fixed bare raise in a handler reraising the original naked exception rather than an exception group which is what is raised when you do a raise in an except* handler
Changelog

Sourced from exceptiongroup's changelog.

Version history

This library adheres to Semantic Versioning 2.0 <http://semver.org/>_.

1.2.0

  • Added special monkeypatching if Apport <https://github.com/canonical/apport>_ has overridden sys.excepthook so it will format exception groups correctly (PR by John Litborn)
  • Added a backport of contextlib.suppress() from Python 3.12.1 which also handles suppressing exceptions inside exception groups
  • Fixed bare raise in a handler reraising the original naked exception rather than an exception group which is what is raised when you do a raise in an except* handler

1.1.3

  • catch() now raises a TypeError if passed an async exception handler instead of just giving a RuntimeWarning about the coroutine never being awaited. (#66, PR by John Litborn)
  • Fixed plain raise statement in an exception handler callback to work like a raise in an except* block
  • Fixed new exception group not being chained to the original exception when raising an exception group from exceptions raised in handler callbacks
  • Fixed type annotations of the derive(), subgroup() and split() methods to match the ones in typeshed

1.1.2

  • Changed handling of exceptions in exception group handler callbacks to not wrap a single exception in an exception group, as per CPython issue 103590 <https://github.com/python/cpython/issues/103590>_

1.1.1

  • Worked around CPython issue [#98778](https://github.com/agronholm/exceptiongroup/issues/98778) <https://github.com/python/cpython/issues/98778>_, urllib.error.HTTPError(..., fp=None) raises KeyError on unknown attribute access, on affected Python versions. (PR by Zac Hatfield-Dodds)

1.1.0

  • Backported upstream fix for gh-99553 (custom subclasses of BaseExceptionGroup that also inherit from Exception should not be able to wrap base exceptions)
  • Moved all initialization code to __new__() (thus matching Python 3.11 behavior)

1.0.4

  • Fixed regression introduced in v1.0.3 where the code computing the suggestions would

... (truncated)

Commits
  • 4e2df21 Added the release version
  • f7c00cf Backported contextlib.suppress from Python 3.12.1 (#95)
  • 1ede26f Enabled pyupgrade ruff rules
  • 767e62b Eliminated pyupgrade and black in favor of ruff/ruff-format
  • d025269 Fixed bare raise in a handler not raising an exception group
  • 4357e11 Updated the checkout action to the latest version
  • e299167 [pre-commit.ci] pre-commit autoupdate (#94)
  • 4e4e879 [pre-commit.ci] pre-commit autoupdate (#92)
  • 27a2963 [pre-commit.ci] pre-commit autoupdate (#90)
  • fae9d9a Monkeypatch Apport excepthook (#88)
  • Additional commits viewable in compare view

Updates identify from 2.5.31 to 2.5.32

Commits
  • 21c9a51 v2.5.32
  • ca5a737 Merge pull request #429 from NavneethJayendran/add-avro-file-extension
  • 7bfc77e feat: identify .avsc as Avro
  • 987c5b4 Merge pull request #426 from dafyddj/feat/salt-lint
  • 9c86ec0 Merge pull request #425 from dafyddj/feat/vagrantfile
  • 97793fd Merge pull request #427 from pre-commit/pre-commit-ci-update-config
  • 2a233fa [pre-commit.ci] pre-commit autoupdate
  • 307db79 feat: identify .salt-lint as YAML
  • ed0ca06 feat: identify Vagrantfile as Ruby
  • See full diff 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 ipython from 8.17.2 to 8.18.0

Commits

Updates pexpect from 4.8.0 to 4.9.0

Release notes

Sourced from pexpect's releases.

A long awaited release

  • Add support for Python 3.12 #769.
  • Clean up temporary files after UnicodeTests #753.
  • Add Python 3.5, 3.6 and 3.12.0-rc.1 to test matrix #763.
  • Set prompt correctly for zsh #712.
  • Add zsh convenience function to replwrap module #751.
  • Rework async unittests to rely on unittest.IsolatedAsyncioTestCase #764.
  • Make test_expect.py work on POSIX systems that are not Linux based #698.
  • Add support for socket, which allows sockets to be used crossplatform #745.
  • Update async to work on newer versions of python #732.
  • Remove deprecated RSAAuthentication option (SSHv1) #744.
  • Multiple CI fixes #743 #737 #742 #739 #722.
  • Use Github Actions for CI #734.
  • Remove pytest-capturelog from testing requirements #730.
  • Fix usage for Solaris #663 #604 #560.
  • Fix threading for new versions of python #684.
  • Fix documentation builds for use with Sphinx 3 #638.
  • Use sys.executable for tests and wrapper, allowing the calling python executable to be used instead #623.
  • Update documentation about Wexpect #623.
  • Added project urls to setup.py #620.
  • Provide examples for how to use Pexpect and Pyte #587.
  • Coerce compiled regex patterns type according to spawn encoding #560.
  • Several doc updates #626 #635 #643 #644 #728.
Commits
  • aa98959 Update changelog and release version 4.9
  • c534976 Merge pull request #769 from hugovk/master
  • 42cc1c1 Merge branch 'master' into master
  • 300668b Merge pull request #753 from scfc/clean-up-tempfiles-after-test-unicode
  • c0296ca Merge pull request #763 from fcollonval/test/async_handling
  • eb9c306 Merge pull request #712 from kbriggs/zsh-login-prompt
  • fd228f3 Merge pull request #751 from kislyuk/patch-1
  • ae982f6 Only try to upload coverage for upstream
  • 76d35fd pytest: drop the dot
  • 8acef7d Add support for Python 3.12
  • Additional commits viewable in compare view

Updates platformdirs from 3.11.0 to 4.0.0

Release notes

Sourced from platformdirs's releases.

4.0.0

What's Changed

New Contributors

Full Changelog: tox-dev/platformdirs@3.11.0...4.0.0

Changelog

Sourced from platformdirs's changelog.

platformdirs 4.0.0 (2023-11-10)

  • UNIX: revert site_cache_dir to use /var/cache instead of /var/tmp

platformdirs 3.8.1 (2023-07-06)

  • BSD: provide a fallback for user_runtime_dir

platformdirs 3.8.0 (2023-06-22)

  • Add missing user media directory docs

platformdirs 3.7.0 (2023-06-20)

  • Have user_runtime_dir return /var/run/user/uid for *BSD

platformdirs 3.6.0 (2023-06-19)

  • introduce user_downloads_dir

platformdirs 3.5.3 (2023-06-09)

  • Use ruff

platformdirs 3.5.2 (2023-05-30)

  • test with 3.12.0.b1

platformdirs 3.5.1 (2023-05-11)

  • Add 3.12 support
  • Add tox.ini to sdist
  • removing Windows versions
  • Better handling for UNIX support

platformdirs 3.5.0 (2023-04-27)

  • introduce user_music_dir

platformdirs 3.4.0 (2023-04-26)

  • introduce user_videos_dir

platformdirs 3.3.0 (2023-04-25)

  • introduce user_pictures_dir

platformdirs 3.2.0 (2023-03-25)

  • add auto create directories optional

... (truncated)

Commits

Updates setuptools from 68.2.2 to 69.0.2

Changelog

Sourced from setuptools's changelog.

v69.0.2

Bugfixes

  • Added missing estimated date for removing setuptools.dep_util (deprecated in v69.0.0). (#4131)

v69.0.1

Bugfixes

  • Fixed imports of setuptools.dep_util.newer_group. A deprecation warning is issued instead of a hard failure. (#4126)

v69.0.0

Features

  • Include type information (py.typed, *.pyi) by default (#3136) -- by :user:Danie-1, EXPERIMENTAL. (#3136)
  • Exported distutils.dep_util and setuptools.dep_util through setuptools.modified -- by :user:Avasam (#4069)
  • Merged with pypa/distutils@7a04cbda0fc714.

Bugfixes

  • Replaced hardcoded numeric values with :obj:dis.opmap, fixing problem with 3.13.0a1. (#4094)

Deprecations and Removals

  • Configuring project version and egg_info.tag_* in such a way that results in invalid version strings (according to :pep:440) is no longer permitted. (#4066)
  • Removed deprecated egg_base option from dist_info. Note that the dist_info command is considered internal to the way setuptools build backend works and not intended for public usage. (#4066)
  • The parsing of the deprecated metadata.license_file and metadata.requires fields in setup.cfg is no longer supported. Users are expected to move to metadata.license_files and

... (truncated)

Commits
  • 4f6449f Bump version: 69.0.1 → 69.0.2
  • a4298d1 Add missing estimated date for removing setuptools.dep_util (#4132)
  • 1495738 Add news fragment
  • c836172 Improve warning visibility with due date and reference url
  • d148d9e Bump version: 69.0.0 → 69.0.1
  • 28775f3 Allow imports of setuptools.dep_util.newer_group with deprecation warning (#4...
  • 7d90e9f Add newsfragment
  • e1f8783 Allow imports of setuptools.dep_util.newer_group with deprecation warning
  • 536d4a8 Bump version: 68.2.2 → 69.0.0
  • b8992ad Mark flaky test on PyPy with xfail (#4124)
  • Additional commits viewable in compare view

Updates wcwidth from 0.2.10 to 0.2.12

Release notes

Sourced from wcwidth's releases.

0.2.11

Include tests files in the source distribution (PR #98, PR #100).

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR afte...

Description has been truncated

Bumps the poetry-dependencies group with 13 updates:

| Package | From | To |
| --- | --- | --- |
| [pygments](https://github.com/pygments/pygments) | `2.16.1` | `2.17.2` |
| [mypy](https://github.com/python/mypy) | `1.7.0` | `1.7.1` |
| [ruff](https://github.com/astral-sh/ruff) | `0.1.5` | `0.1.6` |
| [sphinx-click](https://github.com/click-contrib/sphinx-click) | `5.0.1` | `5.1.0` |
| [certifi](https://github.com/certifi/python-certifi) | `2023.7.22` | `2023.11.17` |
| [exceptiongroup](https://github.com/agronholm/exceptiongroup) | `1.1.3` | `1.2.0` |
| [identify](https://github.com/pre-commit/identify) | `2.5.31` | `2.5.32` |
| [idna](https://github.com/kjd/idna) | `3.4` | `3.6` |
| [ipython](https://github.com/ipython/ipython) | `8.17.2` | `8.18.0` |
| [pexpect](https://github.com/pexpect/pexpect) | `4.8.0` | `4.9.0` |
| [platformdirs](https://github.com/platformdirs/platformdirs) | `3.11.0` | `4.0.0` |
| [setuptools](https://github.com/pypa/setuptools) | `68.2.2` | `69.0.2` |
| [wcwidth](https://github.com/jquast/wcwidth) | `0.2.10` | `0.2.12` |


Updates `pygments` from 2.16.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.16.1...2.17.2)

Updates `mypy` from 1.7.0 to 1.7.1
- [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md)
- [Commits](python/mypy@v1.7.0...v1.7.1)

Updates `ruff` from 0.1.5 to 0.1.6
- [Release notes](https://github.com/astral-sh/ruff/releases)
- [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md)
- [Commits](astral-sh/ruff@v0.1.5...v0.1.6)

Updates `sphinx-click` from 5.0.1 to 5.1.0
- [Release notes](https://github.com/click-contrib/sphinx-click/releases)
- [Commits](click-contrib/sphinx-click@5.0.1...5.1.0)

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

Updates `exceptiongroup` from 1.1.3 to 1.2.0
- [Release notes](https://github.com/agronholm/exceptiongroup/releases)
- [Changelog](https://github.com/agronholm/exceptiongroup/blob/main/CHANGES.rst)
- [Commits](agronholm/exceptiongroup@1.1.3...1.2.0)

Updates `identify` from 2.5.31 to 2.5.32
- [Commits](pre-commit/identify@v2.5.31...v2.5.32)

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 `ipython` from 8.17.2 to 8.18.0
- [Release notes](https://github.com/ipython/ipython/releases)
- [Commits](ipython/ipython@8.17.2...8.18.0)

Updates `pexpect` from 4.8.0 to 4.9.0
- [Release notes](https://github.com/pexpect/pexpect/releases)
- [Changelog](https://github.com/pexpect/pexpect/blob/master/doc/history.rst)
- [Commits](pexpect/pexpect@4.8.0...4.9)

Updates `platformdirs` from 3.11.0 to 4.0.0
- [Release notes](https://github.com/platformdirs/platformdirs/releases)
- [Changelog](https://github.com/platformdirs/platformdirs/blob/main/CHANGES.rst)
- [Commits](tox-dev/platformdirs@3.11.0...4.0.0)

Updates `setuptools` from 68.2.2 to 69.0.2
- [Release notes](https://github.com/pypa/setuptools/releases)
- [Changelog](https://github.com/pypa/setuptools/blob/main/NEWS.rst)
- [Commits](pypa/setuptools@v68.2.2...v69.0.2)

Updates `wcwidth` from 0.2.10 to 0.2.12
- [Release notes](https://github.com/jquast/wcwidth/releases)
- [Commits](jquast/wcwidth@0.2.10...0.2.12)

---
updated-dependencies:
- dependency-name: pygments
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: poetry-dependencies
- dependency-name: mypy
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: poetry-dependencies
- dependency-name: ruff
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: poetry-dependencies
- dependency-name: sphinx-click
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: poetry-dependencies
- dependency-name: certifi
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: poetry-dependencies
- dependency-name: exceptiongroup
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: poetry-dependencies
- dependency-name: identify
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: poetry-dependencies
- dependency-name: idna
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: poetry-dependencies
- dependency-name: ipython
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: poetry-dependencies
- dependency-name: pexpect
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: poetry-dependencies
- dependency-name: platformdirs
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: poetry-dependencies
- dependency-name: setuptools
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: poetry-dependencies
- dependency-name: wcwidth
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: poetry-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 4, 2023

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Dec 4, 2023
@dependabot dependabot bot deleted the dependabot/pip/poetry-dependencies-cf0832c7fe branch December 4, 2023 07:05
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 python Pull requests that update Python code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants