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

build(deps): bump the python-packages group with 16 updates #3

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Oct 31, 2024

Bumps the python-packages group with 16 updates:

Package From To
black 22.3.0 24.10.0
flake8-2020 1.6.1 1.8.1
flake8-bugbear 22.1.11 24.8.19
flake8-comprehensions 3.7.0 3.16.0
flynt 0.76 1.0.1
mypy 0.990 1.13.0
pygments 2.4.0 2.18.0
pytest 6.2.0 8.3.3
regex 2021.4.4 2024.9.11
requests-cache 0.7 1.2.1
ruamel-yaml 0.17.21 0.18.6
toml 0.10.0 0.10.2
twine 2.0.0 5.1.1
types-toml 0.10.4 0.10.8.20240310
typing-extensions 4.0.1 4.12.2
wheel 0.21.0 0.44.0

Updates black from 22.3.0 to 24.10.0

Release notes

Sourced from black's releases.

24.10.0

Highlights

  • Black is now officially tested with Python 3.13 and provides Python 3.13 mypyc-compiled wheels. (#4436) (#4449)
  • Black will issue an error when used with Python 3.12.5, due to an upstream memory safety issue in Python 3.12.5 that can cause Black's AST safety checks to fail. Please use Python 3.12.6 or Python 3.12.4 instead. (#4447)
  • Black no longer supports running with Python 3.8 (#4452)

Stable style

  • Fix crashes involving comments in parenthesised return types or X | Y style unions. (#4453)
  • Fix skipping Jupyter cells with unknown %% magic (#4462)

Preview style

  • Fix type annotation spacing between * and more complex type variable tuple (i.e. def fn(*args: *tuple[*Ts, T]) -> None: pass) (#4440)

Caching

  • Fix bug where the cache was shared between runs with and without --unstable (#4466)

Packaging

  • Upgrade version of mypyc used to 1.12 beta (#4450) (#4449)
  • blackd now requires a newer version of aiohttp. (#4451)

Output

  • Added Python target version information on parse error (#4378)
  • Add information about Black version to internal error messages (#4457)

24.8.0

Stable style

  • Fix crash when # fmt: off is used before a closing parenthesis or bracket. (#4363)

Packaging

  • Packaging metadata updated: docs are explictly linked, the issue tracker is now also linked. This improves the PyPI listing for Black. (#4345)

Parser

  • Fix regression where Black failed to parse a multiline f-string containing another multiline string (#4339)

... (truncated)

Changelog

Sourced from black's changelog.

24.10.0

Highlights

  • Black is now officially tested with Python 3.13 and provides Python 3.13 mypyc-compiled wheels. (#4436) (#4449)
  • Black will issue an error when used with Python 3.12.5, due to an upstream memory safety issue in Python 3.12.5 that can cause Black's AST safety checks to fail. Please use Python 3.12.6 or Python 3.12.4 instead. (#4447)
  • Black no longer supports running with Python 3.8 (#4452)

Stable style

  • Fix crashes involving comments in parenthesised return types or X | Y style unions. (#4453)
  • Fix skipping Jupyter cells with unknown %% magic (#4462)

Preview style

  • Fix type annotation spacing between * and more complex type variable tuple (i.e. def fn(*args: *tuple[*Ts, T]) -> None: pass) (#4440)

Caching

  • Fix bug where the cache was shared between runs with and without --unstable (#4466)

Packaging

  • Upgrade version of mypyc used to 1.12 beta (#4450) (#4449)
  • blackd now requires a newer version of aiohttp. (#4451)

Output

  • Added Python target version information on parse error (#4378)
  • Add information about Black version to internal error messages (#4457)

24.8.0

Stable style

  • Fix crash when # fmt: off is used before a closing parenthesis or bracket. (#4363)

Packaging

  • Packaging metadata updated: docs are explictly linked, the issue tracker is now also linked. This improves the PyPI listing for Black. (#4345)

Parser

  • Fix regression where Black failed to parse a multiline f-string containing another

... (truncated)

Commits

Updates flake8-2020 from 1.6.1 to 1.8.1

Commits
  • f280ad4 v1.8.1
  • 1ee7f2e Merge pull request #127 from asottile/ast-again
  • 9f5790c remove dependence on deprecated ast things (again)
  • 549e2e6 Merge pull request #126 from asottile/pre-commit-ci-update-config
  • 2217b47 [pre-commit.ci] auto fixes from pre-commit.com hooks
  • 906c948 [pre-commit.ci] pre-commit autoupdate
  • 3524dbc Merge pull request #125 from asottile/all-repos_autofix_all-repos-sed
  • 7b0e7d4 fix tags trigger for github actions
  • dccbd3c Merge pull request #124 from asottile/pre-commit-ci-update-config
  • 5fb1fac [pre-commit.ci] pre-commit autoupdate
  • Additional commits viewable in compare view

Updates flake8-bugbear from 22.1.11 to 24.8.19

Release notes

Sourced from flake8-bugbear's releases.

24.8.19

  • B910: implement to suggest using Counter() instead of defaultdict(int) (#489)
  • B901: Do not trigger with explicit Generator return type (#481)
  • B008: add some comments, rename b008_extend_immutable_calls (#476)
  • B040: exception with note added not reraised or used (#477)
  • B039, Add ContextVar with mutable literal or function call as default
  • B040: Add Exception with added note not reraised. (#474)
  • Run tests in Python 3.13
  • Type annotated code (#481 + #483)
  • Replace hash with unsafe_hash (#486)

24.4.26

  • B909: Fix false positive affecting containers of mutables (#469)

24.4.21

  • B950: Add pragma comment to line length ignores (#463)
  • B909: Add more cases to detect + more container mutating functions (#460)

24.2.6

  • B902: Remove decorators named validator and root_validator from B902 checks (#459)
  • B038: Change B038 to B909 and make it optional (#456)

24.1.17

  • B038: Restrict rule to mutation functions only (#453)

24.1.16

  • B036: Fix crash on raise statements raising something other than

24.1.15

  • B038: Add check for mutations of loop iterator (#446)
  • B037: Add check for yielding or returning values in init() (#442)
  • B017: make B017 also apply to BaseException (#439)
  • B036: Add check for except BaseException without re-raising (#438)

23.12.2

  • B018: to detect useless-statements at all levels (#434)
  • B018: Add classname to b018 useless-expression output (#433)
  • B018: Include tuples in b018 useless-statement check (#432)

23.11.28

  • B035: Fix false positive when named expressions are used (#430)

23.11.26

  • B035: add check for static keys in dict-comprehension (#426)
  • B902: Add exceptions for standard library metaclasses (#415)
  • B017: Modify to no longer have a false negative when raises() is imported directly from pytest (#424)
  • B026: Fix bug where the check was not triggered for calls where the caller is an attribute (#420)

... (truncated)

Commits
  • 2f4e42f Update CHANGES + move to version 24.8.19 to release
  • c50e9dc [pre-commit.ci] pre-commit autoupdate (#487)
  • f0eeda8 Replace hash with unsafe_hash (#486)
  • 5939910 Implemented #323: Added new check B910 to suggest using Counter() instead of ...
  • 33993a4 [pre-commit.ci] pre-commit autoupdate (#484)
  • 5ccce79 More types (#483)
  • cfda1e8 Do not trigger B901 with explicit Generator return type (#481)
  • b15feed Set up mypy (#482)
  • 3157b89 add b040: exception with note added not reraised or used (#477)
  • 188eab8 Merge pull request #476 from jakkdl/contextvar_mutable_or_call_default
  • Additional commits viewable in compare view

Updates flake8-comprehensions from 3.7.0 to 3.16.0

Changelog

Sourced from flake8-comprehensions's changelog.

3.16.0 (2024-10-27)

  • Drop Python 3.8 support.

  • Support Python 3.13.

3.15.0 (2024-06-29)

  • Add rule C420 to check for dict comprehensions with constant values, encouraging replacement with dict.fromkeys().

    Thanks to Tom Kuson in PR [#553](https://github.com/adamchainz/flake8-comprehensions/issues/553) <https://github.com/adamchainz/flake8-comprehensions/pull/553>__.

3.14.0 (2023-07-10)

  • Drop Python 3.7 support.

3.13.0 (2023-06-15)

  • Support Python 3.12.

3.12.0 (2023-04-13)

  • Add rule C418 to check for calls passing a dict literal or dict comprehension to dict().

  • Add rule C419 to check for calls passing a list comprehension to any()/all().

3.11.1 (2023-03-21)

  • Fix false positives in C406 “unnecessary dict literal”.

    Fixes Issue [#260](https://github.com/adamchainz/flake8-comprehensions/issues/260) <https://github.com/adamchainz/flake8-comprehensions/issues/260>__.

3.11.0 (2023-03-18)

  • Expand C416 to dict comprehensions.

    Thanks to Aaron Gokaslan in PR [#490](https://github.com/adamchainz/flake8-comprehensions/issues/490) <https://github.com/adamchainz/flake8-comprehensions/pull/490>__.

3.10.1 (2022-10-29)

  • Fix false positive in rules C402 and C404 for dict() calls with keyword arguments.

... (truncated)

Commits

Updates flynt from 0.76 to 1.0.1

Changelog

Sourced from flynt's changelog.

v.1.0.0

Drop support for python 3.7.

Moved % and .format expression identification to ast instead of legacy token state machine.

This has led to small changes in formatting of output code, e.g. type of quotes in ambiguous cases might have changed. Example: 'first part {}'"second part {}".format(one, two) used to result in " quotes, and now results in ', as in f'first part {one}second part {two}'. I think it's a minor change in the output. At the same time it's a huge simplification of the source code that should help maintain and develop this project in the future.

v.0.77

[Contributed by Aarni Koskela] --transform-joins (-tj) will transform string join operations on static operands to an f-string.

[Contributed by Aarni Koskela] Fix handling of escaped unicode characters (#55 and #104).

[Contributed by Aarni Koskela] Add flags to disable percent statement / .format statement transformations: --no-tp, --no-transform-percent and --no-tf, --no-transform-format.

v.0.71

Added support to configuration via file. For per-project configuration, use pyproject.toml file, [tool.flynt] section. for global config, use ~/.config/flynt.toml file.

v0.70

[Contributed by Ryan Barrett] Aggressive mode enables transforming expressions where same variable is used twice, e.g. """a = '%(?)s %(?)s' % {'?': var}""" to """a = f'{var} {var}'"""

v.0.47

  • added the changelog.
  • added -a / --aggressive flag to enable risky (with behaviour potentially different from original) transformations. This currently includes "%5" % var -> f"{var:5}" transformation. Demo of unsafe behavior:
print( "|%5s|%5d|%5d|" % ('111', 999_999, 77)  )
print( "|%5d|%5d|%5d|" % (111, 999_999, 77)  )

print( "|{:5s}|{:5}|{:5}|".format('111', 999_999, 77) ) print( f"|{111:5}|{999_999:5}|{77:5}|" )

""" output: </tr></table>

... (truncated)

Commits

Updates mypy from 0.990 to 1.13.0

Changelog

Sourced from mypy's changelog.

Mypy Release Notes

Next release

Change to enum membership semantics

As per the updated typing specification for enums, enum members must be left unannotated.

class Pet(Enum):
    CAT = 1  # Member attribute
    DOG = 2  # Member attribute
    WOLF: int = 3  # New error: Enum members must be left unannotated
species: str  # Considered a non-member attribute

In particular, the specification change can result in issues in type stubs (.pyi files), since historically it was common to leave the value absent:

# In a type stub (.pyi file)
class Pet(Enum):
# Change in semantics: previously considered members, now non-member attributes
CAT: int
DOG: int
# Mypy will now issue a warning if it detects this situation in type stubs:
# &gt; Detected enum &quot;Pet&quot; in a type stub with zero members.
# &gt; There is a chance this is due to a recent change in the semantics of enum membership.
# &gt; If so, use `member = value` to mark an enum member, instead of `member: type`

class Pet(Enum):
# As per the specification, you should now do one of the following:
DOG = 1  # Member attribute with value 1 and known type
WOLF = cast(int, ...)  # Member attribute with unknown value but known type
LION = ...  # Member attribute with unknown value and unknown type

Contributed by Terence Honles in PR 17207 and Shantanu Jain in PR 18068.

Mypy 1.13

We’ve just uploaded mypy 1.13 to the Python Package Index (PyPI). Mypy is a static type checker for Python. You can install it as follows:

python3 -m pip install -U mypy

... (truncated)

Commits

Updates pygments from 2.4.0 to 2.18.0

Release notes

Sourced from pygments's releases.

2.18.0

  • New lexers:

  • Updated lexers:

    • Awk: recognize ternary operator (#2687)
    • Bash: add openrc alias (#2599, #2371)
    • Coq: add keywords, lex more vernacular command arguments, produce fewer tokens on heading comments (#2678)
    • DNS zone files: Fix comment parsing (#2595)
    • Hy: Support unicode literals (#1126)
    • Inform6: Update to Inform 6.42 (#2644)
    • lean: Fix name handling (#2614)
    • Logtalk: add uninstantiation keyword and recognize escape sequences (#2619)
    • Macaulay2: Update to 1.23 (#2655)
    • Python: fix highlighting of soft keywords before None/True/False
    • reStructuredText: use Token.Comment for comments instead of Comment.Preproc (#2598)
    • Rust: highlight :, :: and -> as Punctuation and whitespace as Whitespace, instead of Text in both cases (#2631)
    • Spice: Add keywords (#2621)
    • SQL Explain: allow negative numbers (#2610)
    • Swift: Support multiline strings (#2681)
    • ThingsDB: add constants and new functions; support template strings (#2624)
    • UL4: support nested <?doc?> and <?note?> tags (#2597)
    • VHDL: support multi-line comments of VHDL-2008 (#2622)
    • Wikitext: Remove kk-* in variant_langs (#2647)
    • Xtend: Add val and var (#2602)
  • New styles:

  • Make background colors in the image formatter work with Pillow 10.0 (#2623)

  • Require Python 3.8. As a result, the importlib-metadata package is no longer needed for fast plugin discovery on Python 3.7. The plugins extra (used as, e.g., pip install pygments[plugins])

... (truncated)

Changelog

Sourced from pygments's changelog.

Version 2.18.0

(released May 4th, 2024)

  • New lexers:

  • Updated lexers:

    • Awk: recognize ternary operator (#2687)
    • Bash: add openrc alias (#2599, #2371)
    • Coq: add keywords, lex more vernacular command arguments, produce fewer tokens on heading comments (#2678)
    • DNS zone files: Fix comment parsing (#2595)
    • Hy: Support unicode literals (#1126)
    • Inform6: Update to Inform 6.42 (#2644)
    • lean: Fix name handling (#2614)
    • Logtalk: add uninstantiation keyword and recognize escape sequences (#2619)
    • Macaulay2: Update to 1.23 (#2655)
    • Python: fix highlighting of soft keywords before None/True/False
    • reStructuredText: use Token.Comment for comments instead of Comment.Preproc (#2598)
    • Rust: highlight :, :: and -> as Punctuation and whitespace as Whitespace, instead of Text in both cases (#2631)
    • Spice: Add keywords (#2621)
    • SQL Explain: allow negative numbers (#2610)
    • Swift: Support multiline strings (#2681)
    • ThingsDB: add constants and new functions; support template strings (#2624)
    • UL4: support nested <?doc?> and <?note?> tags (#2597)
    • VHDL: support multi-line comments of VHDL-2008 (#2622)
    • Wikitext: Remove kk-* in variant_langs (#2647)
    • Xtend: Add val and var (#2602)
  • New styles:

... (truncated)

Commits

Updates pytest from 6.2.0 to 8.3.3

Release notes

Sourced from pytest's releases.

8.3.3

pytest 8.3.3 (2024-09-09)

Bug fixes

  • #12446: Avoid calling @property (and other instance descriptors) during fixture discovery -- by asottile{.interpreted-text role="user"}

  • #12659: Fixed the issue of not displaying assertion failure differences when using the parameter --import-mode=importlib in pytest>=8.1.

  • #12667: Fixed a regression where type change in [ExceptionInfo.errisinstance]{.title-ref} caused [mypy]{.title-ref} to fail.

  • #12744: Fixed typing compatibility with Python 3.9 or less -- replaced [typing.Self]{.title-ref} with [typing_extensions.Self]{.title-ref} -- by Avasam{.interpreted-text role="user"}

  • #12745: Fixed an issue with backslashes being incorrectly converted in nodeid paths on Windows, ensuring consistent path handling across environments.

  • #6682: Fixed bug where the verbosity levels where not being respected when printing the "msg" part of failed assertion (as in assert condition, msg).

  • #9422: Fix bug where disabling the terminal plugin via -p no:terminal would cause crashes related to missing the verbose option.

    -- by GTowers1{.interpreted-text role="user"}

Improved documentation

  • #12663: Clarify that the [pytest_deselected]{.title-ref} hook should be called from [pytest_collection_modifyitems]{.title-ref} hook implementations when items are deselected.
  • #12678: Remove erroneous quotes from [tmp_path_retention_policy]{.title-ref} example in docs.

Miscellaneous internal changes

  • #12769: Fix typos discovered by codespell and add codespell to pre-commit hooks.

8.3.2

pytest 8.3.2 (2024-07-24)

Bug fixes

  • #12652: Resolve regression [conda]{.title-ref} environments where no longer being automatically detected.

    -- by RonnyPfannschmidt{.interpreted-text role="user"}

8.3.1

pytest 8.3.1 (2024-07-20)

The 8.3.0 release failed to include the change notes and docs for the release. This patch release remedies this. There are no other changes.

... (truncated)

Commits

Updates regex from 2021.4.4 to 2024.9.11

Changelog

Sourced from regex's changelog.

Version: 2024.9.14

Reverted to actions/download-artifact@v3 and actions/upload-artifact@v3 in main.yml because GitHub Actions failed when using them.

Version: 2024.9.13

Updated to actions/upload-artifact@v4 in main.yml.

Version: 2024.9.12

Updated to actions/download-artifact@v4 in main.yml.

Version: 2024.9.11

Updated to Unicode 16.0.0.

Version: 2024.7.24

Git issue 539: Bug: Partial matching fails on a simple example

Version: 2024.6.22

Git issue 535: Regex fails Unicode 15.1 GraphemeBreakTest due to missing new GB9c rule implementation

Version: 2024.5.15

Git issue 530: hangs with fuzzy and optionals

It's not hanging, it'll finish eventually. It's just an example of catastrophic backtracking.

The error printed when Ctrl+C is pressed does show a bug, though, which is now fixed.

Version: 2024.5.10

Updated for Python 3.13.

<time.h> now needs to be included explicitly because Python.h no longer includes it.

Version: 2024.4.28

Git issue 527: `VERBOSE`/`X` flag breaks `\N` escapes

Version: 2024.4.16

Git issue 525: segfault when fuzzy matching empty list

Version: 2023.12.25

Cannot get release notification action in main.yml to work. Commenting it out for now.

... (truncated)

Commits

Updates requests-cache from 0.7 to 1.2.1

Release notes

Sourced from requests-cache's releases.

v1.2: Compatibility updates, bugfixes, and minor performance improvements

See Changelog for complete release details.

v1.1: Bugfixes and SQLite concurrency improvements

This is a smaller release with mainly bugfixes and some improvements to the SQLite backend.

See Changelog for complete release details.

Thanks to everyone who provided bug reports, suggestions, and other feedback!

✨ v1.0 ✨

See Changelog for complete release details.

Release highlights

  • 🚀 Lots of miscellaneous performance improvements
  • 🚀 Fast automatic cache cleanup with TTL integration for MongoDB, DynamoDB and Redis
  • 📝 Improved NoSQL/document database support: human-readable and indexable response data in MongoDB and DynamoDB
  • 🕗 Complete support for Cache-Control headers (including its extensions)
  • ✨ Complete type hinting and more details from cached responses
  • 🔒 Redact common authentication headers and parameters from the cache by default
  • ⚙️ Improved session settings interface, and more settings for refreshing, revalidation, and offline cache usage

v0.9: Improved performance, thread safety, Cache-Control support, and general QoL

See Changelog for release details

v0.8: Conditional requests, custom request matching, and comprehensive user guide

See Changelog for release details

Changelog

Sourced from requests-cache's changelog.

1.2.1 (2024-06-18)

🪲 Bugfixes:

  • Fix normalize_headers not accepting header values in bytes
  • Fix inconsistency due to rounding in CachedResponse.expires_unix property
  • Fix form boundary used for cached multipart requests to fully comply with RFC 2046
  • Fix loading cached JSON content with decode_content=True when the root element is an empty list or object
  • Fix usage example with responses library to be compatible with requests 2.32

1.2.0 (2024-02-17)

⚠️ Deprecations & removals:

  • Drop support for python 3.7
  • Remove methods deprecated in 1.0 from CachedSession and BaseCache

🕗 Expiration & headers:

  • Add support for X-HTTP-Method-Override and other headers that can override request method

⚙️ Session methods:

  • Add CachedSession.wrap() classmethod to add caching to an existing requests.Session object

💾 SQLite Backend:

  • Add vacuum parameter to SQLiteCache.delete() to optionally skip vacuuming after deletion (enabled by default to free up disk space)
  • Optimize SQLiteCache.delete() when deleting a single key

🧩 Compatibility:

  • Add support for RFC 7159 JSON body with decode_content=True (root element with any type)
  • Use timezone-aware UTC datetimes for all internal expiration values
  • Add support for python 3.12
    • Note: There is a known bug with multiprocess/multithreaded usage of the SQLite backend on python 3.12.
  • Add support for cattrs 23.2

🪲 Bugfixes:

  • Fix IncompleteRead error that could sometimes occur with streaming requests due to mismatch with Content-Length header
  • Handle a corner case with streaming requests, conditional requests, and redirects
  • When redacting ignored parameters from a cached response, keep the rest of the original URL and headers without normalizing
  • Add CachedHTTPResponse._request_url property for compatibility with urllib3
  • Fix form boundary used for cached multipart requests to comply with RFC 2046
  • If an explicit CA bundle path is passed via verify param, cache the response under the same key as verify=True
  • Handle JSON Content-Type charsets and MIME type variations (such as application/vnd.api+json) during request normalization and serialization

1.1.1 (2023-11-18)

  • Backport fix from 1.2: Add compatibility with cattrs 23.2

1.1.0 (2023-06-30)

⚙️ Session settings:

  • Add support for regular expressions with urls_expire_after

💾 SQLite Backend:

... (truncated)

Commits
  • 7f6be31 Merge pull request #993 from requests-cache/fix-empty-array
  • 423af82 Fix loading cached JSON content with decode_content=True when the root elemen...
  • 28dfa64 Add compatibility tests (for docs/external libraries) to CI and nox config
  • 4114cee Merge pull request #992 from requests-cache/fix-responses-test
  • f652475 Fix usage example with responses library to be compatible with requests 2.32
  • 4dc0a52 Update dependencies
  • d002851 Update changelog and contributors
  • 1290ae9 Update dependencies
  • 08390ee Merge pull request #985 from jcd000/main
  • be91e87 Fixes crashes from patched form boundary
  • Additional commits viewable in compare view

Updates ruamel-yaml from 0.17.21 to 0.18.6

Updates toml from 0.10.0 to 0.10.2

Commits

Updates twine from 2.0.0 to 5.1.1

Release notes

Sourced from twine's releases.

Release v5.1.1

No release notes provided.

5.1.0

No release notes provided.

5.0.0

No release notes provided.

4.0.2

https://pypi.org/project/twine/4.0.2/

Changelog

4.0.1

https://pypi.org/project/twine/4.0.1/

Changelog

4.0.0

https://pypi.org/project/twine/4.0.0/

Changelog

3.8.0

Bumps the python-packages group with 16 updates:

| Package | From | To |
| --- | --- | --- |
| [black](https://github.com/psf/black) | `22.3.0` | `24.10.0` |
| [flake8-2020](https://github.com/asottile/flake8-2020) | `1.6.1` | `1.8.1` |
| [flake8-bugbear](https://github.com/PyCQA/flake8-bugbear) | `22.1.11` | `24.8.19` |
| [flake8-comprehensions](https://github.com/adamchainz/flake8-comprehensions) | `3.7.0` | `3.16.0` |
| [flynt](https://github.com/ikamensh/flynt) | `0.76` | `1.0.1` |
| [mypy](https://github.com/python/mypy) | `0.990` | `1.13.0` |
| [pygments](https://github.com/pygments/pygments) | `2.4.0` | `2.18.0` |
| [pytest](https://github.com/pytest-dev/pytest) | `6.2.0` | `8.3.3` |
| [regex](https://github.com/mrabarnett/mrab-regex) | `2021.4.4` | `2024.9.11` |
| [requests-cache](https://github.com/requests-cache/requests-cache) | `0.7` | `1.2.1` |
| [ruamel-yaml]() | `0.17.21` | `0.18.6` |
| [toml](https://github.com/uiri/toml) | `0.10.0` | `0.10.2` |
| [twine](https://github.com/pypa/twine) | `2.0.0` | `5.1.1` |
| [types-toml](https://github.com/python/typeshed) | `0.10.4` | `0.10.8.20240310` |
| [typing-extensions](https://github.com/python/typing_extensions) | `4.0.1` | `4.12.2` |
| [wheel](https://github.com/pypa/wheel) | `0.21.0` | `0.44.0` |


Updates `black` from 22.3.0 to 24.10.0
- [Release notes](https://github.com/psf/black/releases)
- [Changelog](https://github.com/psf/black/blob/main/CHANGES.md)
- [Commits](psf/black@22.3.0...24.10.0)

Updates `flake8-2020` from 1.6.1 to 1.8.1
- [Commits](asottile-archive/flake8-2020@v1.6.1...v1.8.1)

Updates `flake8-bugbear` from 22.1.11 to 24.8.19
- [Release notes](https://github.com/PyCQA/flake8-bugbear/releases)
- [Commits](PyCQA/flake8-bugbear@22.1.11...24.8.19)

Updates `flake8-comprehensions` from 3.7.0 to 3.16.0
- [Changelog](https://github.com/adamchainz/flake8-comprehensions/blob/main/CHANGELOG.rst)
- [Commits](adamchainz/flake8-comprehensions@3.7.0...3.16.0)

Updates `flynt` from 0.76 to 1.0.1
- [Changelog](https://github.com/ikamensh/flynt/blob/master/CHANGELOG.md)
- [Commits](ikamensh/flynt@0.76...1.0.1)

Updates `mypy` from 0.990 to 1.13.0
- [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md)
- [Commits](python/mypy@v0.990...v1.13.0)

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

Updates `pytest` from 6.2.0 to 8.3.3
- [Release notes](https://github.com/pytest-dev/pytest/releases)
- [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst)
- [Commits](pytest-dev/pytest@6.2.0...8.3.3)

Updates `regex` from 2021.4.4 to 2024.9.11
- [Changelog](https://github.com/mrabarnett/mrab-regex/blob/hg/changelog.txt)
- [Commits](https://github.com/mrabarnett/mrab-regex/commits/2024.9.11)

Updates `requests-cache` from 0.7 to 1.2.1
- [Release notes](https://github.com/requests-cache/requests-cache/releases)
- [Changelog](https://github.com/requests-cache/requests-cache/blob/main/HISTORY.md)
- [Commits](requests-cache/requests-cache@v0.7.0...v1.2.1)

Updates `ruamel-yaml` from 0.17.21 to 0.18.6

Updates `toml` from 0.10.0 to 0.10.2
- [Changelog](https://github.com/uiri/toml/blob/master/RELEASE.rst)
- [Commits](uiri/toml@0.10.0...0.10.2)

Updates `twine` from 2.0.0 to 5.1.1
- [Release notes](https://github.com/pypa/twine/releases)
- [Changelog](https://github.com/pypa/twine/blob/main/docs/changelog.rst)
- [Commits](pypa/twine@2.0.0...v5.1.1)

Updates `types-toml` from 0.10.4 to 0.10.8.20240310
- [Commits](https://github.com/python/typeshed/commits)

Updates `typing-extensions` from 4.0.1 to 4.12.2
- [Release notes](https://github.com/python/typing_extensions/releases)
- [Changelog](https://github.com/python/typing_extensions/blob/main/CHANGELOG.md)
- [Commits](python/typing_extensions@4.0.1...4.12.2)

Updates `wheel` from 0.21.0 to 0.44.0
- [Release notes](https://github.com/pypa/wheel/releases)
- [Changelog](https://github.com/pypa/wheel/blob/main/docs/news.rst)
- [Commits](pypa/wheel@0.21.0...0.44.0)

---
updated-dependencies:
- dependency-name: black
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: python-packages
- dependency-name: flake8-2020
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-packages
- dependency-name: flake8-bugbear
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: python-packages
- dependency-name: flake8-comprehensions
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-packages
- dependency-name: flynt
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: python-packages
- dependency-name: mypy
  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: pytest
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: python-packages
- dependency-name: regex
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: python-packages
- dependency-name: requests-cache
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: python-packages
- dependency-name: ruamel-yaml
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-packages
- dependency-name: toml
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-packages
- dependency-name: twine
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: python-packages
- dependency-name: types-toml
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-packages
- dependency-name: typing-extensions
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-packages
- dependency-name: wheel
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-packages
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Oct 31, 2024
Copy link
Author

dependabot bot commented on behalf of github Oct 31, 2024

The group that created this PR has been removed from your configuration.

@dependabot dependabot bot closed this Oct 31, 2024
@dependabot dependabot bot deleted the dependabot/pip/python-packages-5f798dcc9a branch October 31, 2024 03:22
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.

0 participants