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 python group across 1 directory with 7 updates #3396

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 3, 2024

Bumps the python group with 7 updates in the / directory:

Package From To
setuptools 72.1.0 74.1.1
sphinx 7.4.7 8.0.2
flake8-bugbear 24.4.26 24.8.19
pylint 3.2.6 3.2.7
awscli 1.33.35 1.34.11
boto3 1.34.153 1.35.11
tox 4.16.0 4.18.0

Updates setuptools from 72.1.0 to 74.1.1

Changelog

Sourced from setuptools's changelog.

v74.1.1

Bugfixes

  • Fixed TypeError in msvc.EnvironmentInfo.return_env when no runtime redistributables are installed. (#1902)

v74.1.0

Features

  • Added support for defining ext-modules via pyproject.toml (EXPERIMENTAL, may change in future releases). (#4568)

Bugfixes

  • Merge with pypa/distutils@3dcdf8567, removing the duplicate vendored copy of packaging. (#4622)
  • Restored setuptools.msvc.Environmentinfo as it is used externally. (#4625)

v74.0.0

Features

  • Changed the type of error raised by setuptools.command.easy_install.CommandSpec.from_param on unsupported argument from AttributeError to TypeError -- by :user:Avasam (#4548)
  • Added detection of ARM64 variant of MSVC -- by :user:saschanaz (#4553)
  • Made setuptools.package_index.Credential a typing.NamedTuple -- by :user:Avasam (#4585)
  • Reraise error from setuptools.command.easy_install.auto_chmod instead of nonsensical TypeError: 'Exception' object is not subscriptable -- by :user:Avasam (#4593)
  • Fully typed all collection attributes in pkg_resources -- by :user:Avasam (#4598)
  • Automatically exclude .tox|.nox|.venv directories from sdist. (#4603)

Deprecations and Removals

Misc

... (truncated)

Commits
  • 7ee29bd Bump version: 74.1.0 → 74.1.1
  • bf5d08c In msvc, use os.path namespace.
  • 60d2d56 Merge pull request #4628 from pypa/bugfix/1902-msvc-vcruntimeredist
  • 13bd961 Add news fragment.
  • 1a81003 Add type annotation for VCRuntimeRedist and update the docstring to reflect t...
  • f4adb80 In return_env, avoid checking isfile.
  • 2629280 Prefer generator expression in VCRuntimeRedist
  • 1a9d873 Bump version: 74.0.0 → 74.1.0
  • 4d9a750 Merge pull request #4626 from pypa/bugfix/msvc-EnvironmentInfo
  • a16582b Add a test for construction of EnvironmentInfo.
  • Additional commits viewable in compare view

Updates sphinx from 7.4.7 to 8.0.2

Release notes

Sourced from sphinx's releases.

Sphinx 8.0.2

Changelog: https://www.sphinx-doc.org/en/master/changes.html

Sphinx 8.0.1

Changelog: https://www.sphinx-doc.org/en/master/changes.html

Sphinx 8.0.0

Changelog: https://www.sphinx-doc.org/en/master/changes.html

Dependencies

  • #12633: Drop Python 3.9 support.

Incompatible changes

  • Remove deprecated functions from sphinx.util:

    • Removed sphinx.util.path_stabilize (use sphinx.util.osutil.path_stabilize).
    • Removed sphinx.util.display_chunk (use sphinx.util.display.display_chunk).
    • Removed sphinx.util.status_iterator (use sphinx.util.display.status_iterator).
    • Removed sphinx.util.SkipProgressMessage (use sphinx.util.display.SkipProgressMessage).
    • Removed sphinx.util.progress_message (use sphinx.util.display.progress_message).
    • Removed sphinx.util.epoch_to_rfc1123 (use sphinx.http_date.epoch_to_rfc1123).
    • Removed sphinx.util.rfc1123_to_epoch (use sphinx.http_date.rfc1123_to_epoch).
    • Removed sphinx.util.save_traceback (use sphinx.exceptions.save_traceback).
    • Removed sphinx.util.format_exception_cut_frames (use sphinx.exceptions.format_exception_cut_frames).
    • Removed sphinx.util.xmlname_checker (use sphinx.builders.epub3._XML_NAME_PATTERN).

    Patch by Adam Turner.

  • Removed sphinx.util.osutil.cd (use contextlib.chdir). Patch by Adam Turner.

  • Removed sphinx.util.typing.stringify (use sphinx.util.typing.stringify_annotation). Patch by Adam Turner.

  • #12593: Raise an error for invalid html_sidebars values. Patch by Adam Turner.

  • #12593: Raise an error in Theme.get_config for invalid sections.

... (truncated)

Changelog

Sourced from sphinx's changelog.

Release 8.0.2 (released Jul 30, 2024)

Bugs fixed

  • Fix the pygments.Formatter.__class_getitem__ patch. Patch by Adam Turner.

Release 8.0.1 (released Jul 30, 2024)

Bugs fixed

  • Patch pygments.Formatter.__class_getitem__ in Pygments 2.17. Patch by Adam Turner.

Release 8.0.0 (released Jul 29, 2024)

Dependencies

  • #12633: Drop Python 3.9 support.

Incompatible changes

.. rst-class:: compact

  • Remove deprecated functions from sphinx.util:

    • Removed sphinx.util.path_stabilize (use sphinx.util.osutil.path_stabilize).
    • Removed sphinx.util.display_chunk (use sphinx.util.display.display_chunk).
    • Removed sphinx.util.status_iterator (use sphinx.util.display.status_iterator).
    • Removed sphinx.util.SkipProgressMessage (use sphinx.util.display.SkipProgressMessage).
    • Removed sphinx.util.progress_message (use sphinx.util.display.progress_message).
    • Removed sphinx.util.epoch_to_rfc1123 (use sphinx.http_date.epoch_to_rfc1123).
    • Removed sphinx.util.rfc1123_to_epoch (use sphinx.http_date.rfc1123_to_epoch).
    • Removed sphinx.util.save_traceback (use sphinx.exceptions.save_traceback).
    • Removed sphinx.util.format_exception_cut_frames

... (truncated)

Commits

Updates flake8-bugbear from 24.4.26 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)
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 pylint from 3.2.6 to 3.2.7

Commits
  • a98215b Bump pylint to 3.2.7, update changelog
  • 1deaffa Fix to maintain order of package paths (#9887) (#9897)
  • b4c2951 [Backport maintenance/3.2.x] Fix a crash in undefined-loop-variable with `e...
  • f1925f4 Fix crash in refactoring checker when calling bound lambda (#9867)
  • 7d1626c Fix a false positive unreachable for NoReturn coroutine functions (#9844)...
  • See full diff in compare view

Updates awscli from 1.33.35 to 1.34.11

Commits
  • f3b4df7 Merge branch 'release-1.34.11'
  • f283748 Bumping version to 1.34.11
  • 75dd2fc Update changelog based on model updates
  • 765bffb Merge branch 'release-1.34.10'
  • 7ab4a17 Merge branch 'release-1.34.10' into develop
  • 54510ff Bumping version to 1.34.10
  • 49747c5 Update changelog based on model updates
  • 55d5c19 Merge branch 'release-1.34.9'
  • d8f3912 Merge branch 'release-1.34.9' into develop
  • 4149108 Bumping version to 1.34.9
  • Additional commits viewable in compare view

Updates boto3 from 1.34.153 to 1.35.11

Commits
  • 0f43c75 Merge branch 'release-1.35.11'
  • 7ab2158 Bumping version to 1.35.11
  • 9569713 Add changelog entries from botocore
  • 7f86817 Merge pull request #4254 from boto/dependabot/github_actions/actions/setup-py...
  • a9d4593 Bump actions/setup-python from 5.1.0 to 5.2.0
  • 85cba10 Merge branch 'release-1.35.10'
  • 662387a Merge branch 'release-1.35.10' into develop
  • 7264985 Bumping version to 1.35.10
  • 4e8bc10 Add changelog entries from botocore
  • 6f961e2 Merge branch 'release-1.35.9'
  • Additional commits viewable in compare view

Updates tox from 4.16.0 to 4.18.0

Release notes

Sourced from tox's releases.

4.18.0

What's Changed

Full Changelog: tox-dev/tox@4.17.1...4.18.0

4.17.1

What's Changed

New Contributors

Full Changelog: tox-dev/tox@4.17.0...4.17.1

4.17.0

What's Changed

New Contributors

Full Changelog: tox-dev/tox@4.16.0...4.17.0

Changelog

Sourced from tox's changelog.

v4.18.0 (2024-08-13)

Features - 4.18.0

- Suppress spinner in parallel runs in CI - by :user:`ziima`. (:issue:`3318`)

Bugfixes - 4.18.0

  • Boost temporary directories cleanup in tests - by :user:ziima. (:issue:3278)
  • Fix absolute base python paths conflicting - by :user:gaborbernat. (:issue:3325)

v4.17.1 (2024-08-07)

Bugfixes - 4.17.1

- Support for running ``-e <major>.<minor>`` has been lost, fixing it - by :user:`gaborbernat`. (:issue:`2849`)
- ``base_python`` now accepts absolute paths to interpreter executable - by :user:`paveldikov`. (:issue:`3191`)

v4.17.0 (2024-08-05)

Features - 4.17.0

  • Add graalpy prefix as a supported base python (:issue:3312)
  • Add :ref:on_platform core configuration holding the tox platform and do not install package when exec an environment
    • by :user:gaborbernat. (:issue:3315)

Bugfixes - 4.17.0

- Add table with default environment variables per OS (:issue:`2753`)
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 after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the python group with 7 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [setuptools](https://github.com/pypa/setuptools) | `72.1.0` | `74.1.1` |
| [sphinx](https://github.com/sphinx-doc/sphinx) | `7.4.7` | `8.0.2` |
| [flake8-bugbear](https://github.com/PyCQA/flake8-bugbear) | `24.4.26` | `24.8.19` |
| [pylint](https://github.com/pylint-dev/pylint) | `3.2.6` | `3.2.7` |
| [awscli](https://github.com/aws/aws-cli) | `1.33.35` | `1.34.11` |
| [boto3](https://github.com/boto/boto3) | `1.34.153` | `1.35.11` |
| [tox](https://github.com/tox-dev/tox) | `4.16.0` | `4.18.0` |



Updates `setuptools` from 72.1.0 to 74.1.1
- [Release notes](https://github.com/pypa/setuptools/releases)
- [Changelog](https://github.com/pypa/setuptools/blob/main/NEWS.rst)
- [Commits](pypa/setuptools@v72.1.0...v74.1.1)

Updates `sphinx` from 7.4.7 to 8.0.2
- [Release notes](https://github.com/sphinx-doc/sphinx/releases)
- [Changelog](https://github.com/sphinx-doc/sphinx/blob/v8.0.2/CHANGES.rst)
- [Commits](sphinx-doc/sphinx@v7.4.7...v8.0.2)

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

Updates `pylint` from 3.2.6 to 3.2.7
- [Release notes](https://github.com/pylint-dev/pylint/releases)
- [Commits](pylint-dev/pylint@v3.2.6...v3.2.7)

Updates `awscli` from 1.33.35 to 1.34.11
- [Release notes](https://github.com/aws/aws-cli/releases)
- [Commits](aws/aws-cli@1.33.35...1.34.11)

Updates `boto3` from 1.34.153 to 1.35.11
- [Release notes](https://github.com/boto/boto3/releases)
- [Commits](boto/boto3@1.34.153...1.35.11)

Updates `tox` from 4.16.0 to 4.18.0
- [Release notes](https://github.com/tox-dev/tox/releases)
- [Changelog](https://github.com/tox-dev/tox/blob/main/docs/changelog.rst)
- [Commits](tox-dev/tox@4.16.0...4.18.0)

---
updated-dependencies:
- dependency-name: setuptools
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: python
- dependency-name: sphinx
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: python
- dependency-name: flake8-bugbear
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python
- dependency-name: pylint
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python
- dependency-name: awscli
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python
- dependency-name: boto3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python
- dependency-name: tox
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Sep 3, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Sep 9, 2024

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

@dependabot dependabot bot closed this Sep 9, 2024
@dependabot dependabot bot deleted the dependabot/pip/python-1cc8b069f4 branch September 9, 2024 12:28
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