Skip to content

Commit

Permalink
build(deps): bump the pip group across 1 directory with 6 updates (#103)
Browse files Browse the repository at this point in the history
Bumps the pip group with 6 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [mdformat](https://github.com/executablebooks/mdformat) | `0.7.17` | `0.7.18` |
| [rich](https://github.com/Textualize/rich) | `13.8.1` | `13.9.2` |
| [sh](https://github.com/amoffat/sh) | `2.0.7` | `2.1.0` |
| [pyinstaller](https://github.com/pyinstaller/pyinstaller) | `6.10.0` | `6.11.0` |
| [black](https://github.com/psf/black) | `24.8.0` | `24.10.0` |
| [pylint](https://github.com/pylint-dev/pylint) | `3.2.7` | `3.3.1` |

Updates `mdformat` from 0.7.17 to 0.7.18
- [Commits](hukkin/mdformat@0.7.17...0.7.18)

Updates `rich` from 13.8.1 to 13.9.2
- [Release notes](https://github.com/Textualize/rich/releases)
- [Changelog](https://github.com/Textualize/rich/blob/master/CHANGELOG.md)
- [Commits](Textualize/rich@v13.8.1...v13.9.2)

Updates `sh` from 2.0.7 to 2.1.0
- [Release notes](https://github.com/amoffat/sh/releases)
- [Changelog](https://github.com/amoffat/sh/blob/develop/CHANGELOG.md)
- [Commits](amoffat/sh@2.0.7...2.1.0)

Updates `pyinstaller` from 6.10.0 to 6.11.0
- [Release notes](https://github.com/pyinstaller/pyinstaller/releases)
- [Changelog](https://github.com/pyinstaller/pyinstaller/blob/develop/doc/CHANGES.rst)
- [Commits](pyinstaller/pyinstaller@v6.10.0...v6.11.0)

Updates `black` from 24.8.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@24.8.0...24.10.0)

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

---
updated-dependencies:
- dependency-name: mdformat
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip
- dependency-name: rich
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: sh
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: pyinstaller
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: black
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: pylint
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pip
...

Signed-off-by: dependabot[bot] <[email protected]>
Signed-off-by: Adrien Mannocci <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Oct 29, 2024
1 parent 50345b1 commit 9f4a2c0
Show file tree
Hide file tree
Showing 4 changed files with 73 additions and 73 deletions.
126 changes: 63 additions & 63 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,19 +39,19 @@ dataclasses-json = "^0.6.7" # MIT
envyaml = "^1.10.211231" # MIT
jinja2 = "^3.1.4" # BSD
jsonschema = "^4.23.0" # MIT
mdformat = "^0.7.17" # MIT
mdformat = "^0.7.18" # MIT
overrides = "^7.7.0" # Apache-2.0
rich = "^13.8.1" # MIT
sh = "^2.0.7" # MIT
rich = "^13.9.2" # MIT
sh = "^2.1.0" # MIT

[tool.poetry.group.build.dependencies]
pyinstaller = "^6.10.0" # GPL-2.0: https://pyinstaller.org/en/stable/license.html
pyinstaller = "^6.11.0" # GPL-2.0: https://pyinstaller.org/en/stable/license.html

[tool.poetry.group.dev.dependencies]
black = "^24.8.0" # MIT
black = "^24.10.0" # MIT
isort = "^5.13.2" # MIT
licenseheaders = "^0.8.8" # MIT
pylint = "^3.2.7" # GPL-2.0: https://github.com/pylint-dev/pylint/blob/main/LICENSE
pylint = "^3.3.1" # GPL-2.0: https://github.com/pylint-dev/pylint/blob/main/LICENSE
pytest = "^8.3.3" # MIT
pytest-timeout = "^2.3.1" # MIT
pytest-xdist = "^3.6.1" # MIT
Expand Down
4 changes: 2 additions & 2 deletions terranova/binds.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ def is_allowed_env_var(env_var: str) -> bool:
kwargs["_cwd"] = self.__work_dir
return super()._exec_ctx(*args, **kwargs)

# pylint: disable=too-many-arguments
# pylint: disable=too-many-arguments,too-many-positional-arguments
def init(
self,
backend_config: dict[str, str] | None = None,
Expand Down Expand Up @@ -181,7 +181,7 @@ def fmt(self) -> None:
"""Reformat your configuration in the standard style."""
self._exec("fmt", _inherit=True)

# pylint: disable=redefined-builtin
# pylint: disable=redefined-builtin,too-many-positional-arguments
def plan(
self,
compact_warnings: bool,
Expand Down
4 changes: 2 additions & 2 deletions terranova/commands/binds.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
default=False,
is_flag=True,
)
# pylint: disable-next=R0913
# pylint: disable-next=R0913,too-many-positional-arguments
def init(
path: str | None, migrate_state: bool, no_backend: bool, reconfigure: bool, upgrade: bool, fail_at_end: bool
) -> None:
Expand Down Expand Up @@ -298,7 +298,7 @@ def docs(docs_dir: Path) -> None:
type=click.Path(path_type=Path, dir_okay=False, writable=True),
required=False,
)
# pylint: disable-next=R0913
# pylint: disable-next=R0913,too-many-positional-arguments
def plan(
path: str | None,
compact_warnings: bool,
Expand Down

0 comments on commit 9f4a2c0

Please sign in to comment.