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 all-dependencies group with 13 updates #50

Merged
merged 3 commits into from
Dec 26, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 26, 2024

Bumps the all-dependencies group with 13 updates:

Package From To
grpcio 1.68.0 1.68.1
grpcio-tools 1.68.0 1.68.1
jsonpickle 3.4.2 4.0.1
inflect 6.2.0 7.4.0
pytest 7.4.4 8.3.4
flask 2.3.3 3.1.0
textblob 0.18.0 0.18.0.post0
pylint 2.13.9 3.3.3
flake8 5.0.4 7.1.1
flynt 0.76 1.0.1
pep8-naming 0.13.3 0.14.1
flake8-bugbear 22.12.6 24.12.12
gradio 3.50.2 5.9.1

Updates grpcio from 1.68.0 to 1.68.1

Release notes

Sourced from grpcio's releases.

Release v1.68.1

This is release 1.68.1 (groovy) of gRPC Core.

For gRPC documentation, see grpc.io. For previous releases, see Releases.

This release contains refinements, improvements, and bug fixes, with highlights listed below.

Core

  • [xDS RBAC] Support string_match in HeaderMatcher (#38185). (#38198)
Commits

Updates grpcio-tools from 1.68.0 to 1.68.1

Release notes

Sourced from grpcio-tools's releases.

Release v1.68.1

This is release 1.68.1 (groovy) of gRPC Core.

For gRPC documentation, see grpc.io. For previous releases, see Releases.

This release contains refinements, improvements, and bug fixes, with highlights listed below.

Core

  • [xDS RBAC] Support string_match in HeaderMatcher (#38185). (#38198)
Commits

Updates jsonpickle from 3.4.2 to 4.0.1

Changelog

Sourced from jsonpickle's changelog.

v4.0.1

* The unpickler is now more resilient to malformed "py/reduce", "py/set",
  "py/tuple", "py/b64", "py/b85", and "py/iterator" input data. (+544) (+545)
* The test suite was updated to leverage more pytest features.
* The ``jsonpickle.compat`` module is no longer used. It is still provided
  for backwards compatibility but it may be removed in a future version.

v4.0.0

* **Breaking Change**: Python 3.7 is no longer supported.
* **Breaking Change**: Support for pre-0.7.0 ``repr``-serialized objects is no
  longer enabled by default. The ``safe`` option to ``decode()`` was changed from
  ``False`` to ``True``. Users can still pass ``safe=False`` to ``decode()`` in order
  to enable this feature for the purposes of loading older files, but beware that
  this feature relies on unsafe behavior through its use of ``eval()``. Users are
  encouraged to re-pickle old data in order to migrate away from the the unsafe loading
  feature. (+514)
* The pickler no longer produces ``py/repr`` tags when pickling modules.
  ``py/mod`` is used instead, as it is clearer and uses one less byte. (+514)
* The test suite no longer uses the deprecated ``datetime.datetime.utcnow()``
  function. (+539)
Commits
  • 01d4e12 jsonpickle v4.0.1
  • d4e49ae Merge pull request #545 from davvid/main
  • 9b68143 jsonpickle: guard against invalid b85 and b64 data
  • 49af293 tests: test the unpickler against more invalid values
  • bc1b0d6 Merge pull request #544 from davvid/robust-reduce
  • 958452b unpickler: guard against malformed py/reduce values
  • 35ab9ff Merge pull request #542 from Theelx/main
  • 3bfba5f Merge pull request #541 from davvid/compat
  • 126f598 api: inline PRIMITIVES and NUMERIC_TYPES
  • 5f6d93e Guard against malformed py/tuple and/or py/iterator data
  • Additional commits viewable in compare view

Updates inflect from 6.2.0 to 7.4.0

Changelog

Sourced from inflect's changelog.

v7.4.0

Features

  • Handle a single apostrophe more gracefully. (#218)

v7.3.1

Bugfixes

  • Set minimum version of more-itertools to 8.5 (#215)

v7.3.0

Features

  • Restricted typing_extensions to Python 3.8. (#211)

v7.2.1

Bugfixes

  • Refactored number_to_words toward reduced complexity.

v7.2.0

Features

  • Replace pydantic with typeguard (#195)

v7.1.0

Features

... (truncated)

Commits

Updates pytest from 7.4.4 to 8.3.4

Release notes

Sourced from pytest's releases.

8.3.4

pytest 8.3.4 (2024-12-01)

Bug fixes

  • #12592: Fixed KeyError{.interpreted-text role="class"} crash when using --import-mode=importlib in a directory layout where a directory contains a child directory with the same name.

  • #12818: Assertion rewriting now preserves the source ranges of the original instructions, making it play well with tools that deal with the AST, like executing.

  • #12849: ANSI escape codes for colored output now handled correctly in pytest.fail{.interpreted-text role="func"} with [pytrace=False]{.title-ref}.

  • #9353: pytest.approx{.interpreted-text role="func"} now uses strict equality when given booleans.

Improved documentation

  • #10558: Fix ambiguous docstring of pytest.Config.getoption{.interpreted-text role="func"}.

  • #10829: Improve documentation on the current handling of the --basetemp option and its lack of retention functionality (temporary directory location and retention{.interpreted-text role="ref"}).

  • #12866: Improved cross-references concerning the recwarn{.interpreted-text role="fixture"} fixture.

  • #12966: Clarify filterwarnings{.interpreted-text role="ref"} docs on filter precedence/order when using multiple @pytest.mark.filterwarnings <pytest.mark.filterwarnings ref>{.interpreted-text role="ref"} marks.

Contributor-facing changes

  • #12497: Fixed two failing pdb-related tests on Python 3.13.

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.

... (truncated)

Commits
  • 53f8b4e Update pypa/gh-action-pypi-publish to v1.12.2
  • 98dff36 Prepare release version 8.3.4
  • 1b474e2 approx: use exact comparison for bool (#13013)
  • b541721 docs: Fix wrong statement about sys.modules with importlib import mode (#1298...
  • 16cb87b pytest.fail: fix ANSI escape codes for colored output (#12959) (#12990)
  • be6bc81 Issue #12966 Clarify filterwarnings docs on precedence when using multiple ma...
  • 7aeb72b Improve docs on basetemp and retention (#12912) (#12928)
  • c875841 Merge pull request #12917 from pytest-dev/patchback/backports/8.3.x/ded1f44e5...
  • 6502816 Merge pull request #12913 from jakkdl/dontfailonbadpath
  • 52135b0 Merge pull request #12885 from The-Compiler/pdb-py311 (#12887)
  • Additional commits viewable in compare view

Updates flask from 2.3.3 to 3.1.0

Release notes

Sourced from flask's releases.

3.1.0

This is the Flask 3.1.0 feature release. A feature release may include new features, remove previously deprecated code, add new deprecations, or introduce potentially breaking changes. We encourage everyone to upgrade, and to use a tool such as pip-tools to pin all dependencies and control upgrades. Test with warnings treated as errors to be able to adapt to deprecation warnings early.

PyPI: https://pypi.org/project/Flask/3.1.0/ Changes: https://flask.palletsprojects.com/en/stable/changes/#version-3-1-0 Milestone: https://github.com/pallets/flask/milestone/33?closed=1

  • Drop support for Python 3.8. #5623
  • Update minimum dependency versions to latest feature releases. Werkzeug >= 3.1, ItsDangerous >= 2.2, Blinker >= 1.9. #5624, #5633
  • Provide a configuration option to control automatic option responses. #5496
  • Flask.open_resource/open_instance_resource and Blueprint.open_resource take an encoding parameter to use when opening in text mode. It defaults to utf-8. #5504
  • Request.max_content_length can be customized per-request instead of only through the MAX_CONTENT_LENGTH config. Added MAX_FORM_MEMORY_SIZE and MAX_FORM_PARTS config. Added documentation about resource limits to the security page. #5625
  • Add support for the Partitioned cookie attribute (CHIPS), with the SESSION_COOKIE_PARTITIONED config. #5472
  • -e path takes precedence over default .env and .flaskenv files. load_dotenv loads default files in addition to a path unless load_defaults=False is passed. #5628
  • Support key rotation with the SECRET_KEY_FALLBACKS config, a list of old secret keys that can still be used for unsigning. Extensions will need to add support. #5621
  • Fix how setting host_matching=True or subdomain_matching=False interacts with SERVER_NAME. Setting SERVER_NAME no longer restricts requests to only that domain. #5553
  • Request.trusted_hosts is checked during routing, and can be set through the TRUSTED_HOSTS config. #5636

3.0.3

This is a fix release for the 3.0.x feature branch.

PyPI: https://pypi.org/project/Flask/3.0.3/ Changes: https://flask.palletsprojects.com/en/3.0.x/changes/#version-3-0-3 Milestone: https://github.com/pallets/flask/milestone/35?closed=1

  • The default hashlib.sha1 may not be available in FIPS builds. Don't access it at import time so the developer has time to change the default. #5448
  • Don't initialize the cli attribute in the sansio scaffold, but rather in the Flask concrete class. #5270

3.0.2

This is a fix release for the 3.0.x feature release branch. It fixes bugs but does not otherwise change behavior and should not result in breaking changes.

3.0.1

This is a fix release for the 3.0.x feature release branch.

Fixes an issue where using other JSON providers, such as flask-orjson, previously caused loaded session data to have an incorrect format in some cases.

3.0.0

This is a feature release, which includes new features, removes previously deprecated code, and adds new deprecations. The 3.0.x branch is now the supported fix branch, the 2.3.x branch will become a tag marking the end of support for that branch. We encourage everyone to upgrade, and to use a tool such as pip-tools to pin all dependencies and control upgrades. Test with warnings treated as errors to be able to adapt to deprecation warnings early.

Changelog

Sourced from flask's changelog.

Version 3.1.0

Released 2024-11-13

  • Drop support for Python 3.8. :pr:5623
  • Update minimum dependency versions to latest feature releases. Werkzeug >= 3.1, ItsDangerous >= 2.2, Blinker >= 1.9. :pr:5624,5633
  • Provide a configuration option to control automatic option responses. :pr:5496
  • Flask.open_resource/open_instance_resource and Blueprint.open_resource take an encoding parameter to use when opening in text mode. It defaults to utf-8. :issue:5504
  • Request.max_content_length can be customized per-request instead of only through the MAX_CONTENT_LENGTH config. Added MAX_FORM_MEMORY_SIZE and MAX_FORM_PARTS config. Added documentation about resource limits to the security page. :issue:5625
  • Add support for the Partitioned cookie attribute (CHIPS), with the SESSION_COOKIE_PARTITIONED config. :issue:5472
  • -e path takes precedence over default .env and .flaskenv files. load_dotenv loads default files in addition to a path unless load_defaults=False is passed. :issue:5628
  • Support key rotation with the SECRET_KEY_FALLBACKS config, a list of old secret keys that can still be used for unsigning. Extensions will need to add support. :issue:5621
  • Fix how setting host_matching=True or subdomain_matching=False interacts with SERVER_NAME. Setting SERVER_NAME no longer restricts requests to only that domain. :issue:5553
  • Request.trusted_hosts is checked during routing, and can be set through the TRUSTED_HOSTS config. :issue:5636

Version 3.0.3

Released 2024-04-07

  • The default hashlib.sha1 may not be available in FIPS builds. Don't access it at import time so the developer has time to change the default. :issue:5448
  • Don't initialize the cli attribute in the sansio scaffold, but rather in the Flask concrete class. :pr:5270

Version 3.0.2

Released 2024-02-03

  • Correct type for jinja_loader property. :issue:5388

... (truncated)

Commits
  • ab81496 release version 3.1.0
  • 70602a1 remove test pypi
  • 6748a09 update dev dependencies
  • 22c48a7 Merge remote-tracking branch 'origin/stable'
  • 2eab96a use generic bases for session (#5638)
  • f49dbfd use generic bases for session
  • 7b21d43 configure and check request.trusted_hosts (#5637)
  • 4f7156f configure and check trusted_hosts
  • 10bdf61 setting SERVER_NAME does not restrict routing for both subdomain_matching...
  • 4995a77 fix subdomain_matching=False behavior
  • Additional commits viewable in compare view

Updates textblob from 0.18.0 to 0.18.0.post0

Changelog

Sourced from textblob's changelog.

Changelog

0.19.0 (unreleased)


Other changes:

  • Remove vendorized unicodecsv module, as it's no longer used.
Commits

Updates pylint from 2.13.9 to 3.3.3

Commits

Updates flake8 from 5.0.4 to 7.1.1

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 pep8-naming from 0.13.3 to 0.14.1

Release notes

Sourced from pep8-naming's releases.

0.14.1

  • Require Python 3.8 or later.

0.14.0

  • Drop support for Python 3.7.
  • Add support for Python 3.12.
  • Ignore methods decorated by @typing.override.
  • Perform case-sensitive ignore-names globbing on all platforms.
Changelog

Sourced from pep8-naming's changelog.

0.14.1 - 2024-05-17

  • Require Python 3.8 or later.

0.14.0 - 2024-05-16

  • Drop support for Python 3.7.
  • Add support for Python 3.12.
  • Ignore methods decorated by @typing.override.
  • Perform case-sensitive ignore-names globbing on all platforms.
Commits
  • f0edf20 Prepare the 0.14.1 release
  • b652e8f Merge pull request #231 from PyCQA/sigmavirus24-patch-1
  • a960999 Fix python_version
  • 9451737 Update setup.py
  • c0bcb7f Prepare the 0.14.0 release
  • 975beed Refactor FunctionArgNamesCheck (N803,N804,N805)
  • 01df3f3 Pass 'parents' as a parameter when walking the tree
  • de0963c Merge Python 3.8+ tests into main test modules
  • 0ddfcea Remove Python 3.7 compatibility code
  • 0e8f745 Drop support for Python 3.7
  • Additional commits viewable in compare view

Updates flake8-bugbear from 22.12.6 to 24.12.12

Release notes

Sourced from flake8-bugbear's releases.

24.12.12

  • B012 and B025 now also handle try/except* (#500)
  • Skip B028 if warnings.warn is called with *args or **kwargs (#501)
  • Add B911: itertools.batched without strict= (#502)
  • Readme has anchors per check (they do not seem to render on GitHub tho)

24.10.31

  • B041: New dictionary same key AND value check (#496)
  • B037: Fix typo in error message
  • B024: No longer treats assigned class variables as abstract (#471)
  • Bump required attrs version to 22.2.0

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)

... (truncated)

Commits
  • 3a14037 Update CHANGES + move to version 24.12.12 to release
  • 761dbe2 Make rstcheck pass again sadly ignoring anchor links
  • 7ee1976 README: Add anchors for rules and config options (#491)
  • b960272 add except* support to B012&B025 (#500)
  • 4fed293 Skip B028 if warnings.warn is called with *args or **kwargs (#501)
  • 994f3dd Add B911: itertools.batched without strict= (#502)
  • 108bba4 Fix README format
  • 72f6116 Update CHANGES + move to version 24.10.31 to release
  • 07a5676 Add scentence really explaining B041
  • 95f8791 Add B041: Duplicate key-value pairs in dictionary literals (#496)
  • Additional commits viewable in compare view

Updates gradio from 3.50.2 to 5.9.1

Release notes

Sourced from gradio's releases.

[email protected]

Fixes

[email protected]

Features

Fixes

[email protected]

Features

... (truncated)

Changelog

Sourced from gradio's changelog.

5.9.1

Fixes

5.9.0

Features

Bumps the all-dependencies group with 13 updates:

| Package | From | To |
| --- | --- | --- |
| [grpcio](https://github.com/grpc/grpc) | `1.68.0` | `1.68.1` |
| [grpcio-tools](https://github.com/grpc/grpc) | `1.68.0` | `1.68.1` |
| [jsonpickle](https://github.com/jsonpickle/jsonpickle) | `3.4.2` | `4.0.1` |
| [inflect](https://github.com/jaraco/inflect) | `6.2.0` | `7.4.0` |
| [pytest](https://github.com/pytest-dev/pytest) | `7.4.4` | `8.3.4` |
| [flask](https://github.com/pallets/flask) | `2.3.3` | `3.1.0` |
| [textblob](https://github.com/sloria/TextBlob) | `0.18.0` | `0.18.0.post0` |
| [pylint](https://github.com/pylint-dev/pylint) | `2.13.9` | `3.3.3` |
| [flake8](https://github.com/pycqa/flake8) | `5.0.4` | `7.1.1` |
| [flynt](https://github.com/ikamensh/flynt) | `0.76` | `1.0.1` |
| [pep8-naming](https://github.com/PyCQA/pep8-naming) | `0.13.3` | `0.14.1` |
| [flake8-bugbear](https://github.com/PyCQA/flake8-bugbear) | `22.12.6` | `24.12.12` |
| [gradio](https://github.com/gradio-app/gradio) | `3.50.2` | `5.9.1` |


Updates `grpcio` from 1.68.0 to 1.68.1
- [Release notes](https://github.com/grpc/grpc/releases)
- [Changelog](https://github.com/grpc/grpc/blob/master/doc/grpc_release_schedule.md)
- [Commits](grpc/grpc@v1.68.0...v1.68.1)

Updates `grpcio-tools` from 1.68.0 to 1.68.1
- [Release notes](https://github.com/grpc/grpc/releases)
- [Changelog](https://github.com/grpc/grpc/blob/master/doc/grpc_release_schedule.md)
- [Commits](grpc/grpc@v1.68.0...v1.68.1)

Updates `jsonpickle` from 3.4.2 to 4.0.1
- [Release notes](https://github.com/jsonpickle/jsonpickle/releases)
- [Changelog](https://github.com/jsonpickle/jsonpickle/blob/main/CHANGES.rst)
- [Commits](jsonpickle/jsonpickle@v3.4.2...v4.0.1)

Updates `inflect` from 6.2.0 to 7.4.0
- [Release notes](https://github.com/jaraco/inflect/releases)
- [Changelog](https://github.com/jaraco/inflect/blob/main/NEWS.rst)
- [Commits](jaraco/inflect@v6.2.0...v7.4.0)

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

Updates `flask` from 2.3.3 to 3.1.0
- [Release notes](https://github.com/pallets/flask/releases)
- [Changelog](https://github.com/pallets/flask/blob/main/CHANGES.rst)
- [Commits](pallets/flask@2.3.3...3.1.0)

Updates `textblob` from 0.18.0 to 0.18.0.post0
- [Release notes](https://github.com/sloria/TextBlob/releases)
- [Changelog](https://github.com/sloria/TextBlob/blob/dev/CHANGELOG.rst)
- [Commits](sloria/TextBlob@0.18.0...0.18.0.post0)

Updates `pylint` from 2.13.9 to 3.3.3
- [Release notes](https://github.com/pylint-dev/pylint/releases)
- [Commits](pylint-dev/pylint@v2.13.9...v3.3.3)

Updates `flake8` from 5.0.4 to 7.1.1
- [Commits](PyCQA/flake8@5.0.4...7.1.1)

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 `pep8-naming` from 0.13.3 to 0.14.1
- [Release notes](https://github.com/PyCQA/pep8-naming/releases)
- [Changelog](https://github.com/PyCQA/pep8-naming/blob/main/CHANGELOG.rst)
- [Commits](PyCQA/pep8-naming@0.13.3...0.14.1)

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

Updates `gradio` from 3.50.2 to 5.9.1
- [Release notes](https://github.com/gradio-app/gradio/releases)
- [Changelog](https://github.com/gradio-app/gradio/blob/main/CHANGELOG.md)
- [Commits](https://github.com/gradio-app/gradio/compare/[email protected]@5.9.1)

---
updated-dependencies:
- dependency-name: grpcio
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: grpcio-tools
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: jsonpickle
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: inflect
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: pytest
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: flask
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: textblob
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: pylint
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: flake8
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: flynt
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: pep8-naming
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: flake8-bugbear
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: gradio
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Dec 26, 2024
@wu-sheng wu-sheng added this to the 0.4.0 milestone Dec 26, 2024
@wu-sheng wu-sheng merged commit 7b4233c into main Dec 26, 2024
3 checks passed
@wu-sheng wu-sheng deleted the dependabot/pip/all-dependencies-1046051cc3 branch December 26, 2024 04:36
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.

2 participants