From 4ac9f3323c2e02c835b079be5a416e6695b85f74 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Nov 2023 11:03:31 +0000 Subject: [PATCH] Bump python-on-whales from 0.66.0 to 0.67.0 (#7832) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps [python-on-whales](https://github.com/gabrieldemarmiesse/python-on-whales) from 0.66.0 to 0.67.0.
Release notes

Sourced from python-on-whales's releases.

v0.67.0

This release is the first where we'll slowly force some arguments to be positional only or keyword only. This is to ensure we have the flexibility in the future to change functions signatures without breaking people's code. Also that will make the user's code cleaner and less error prone.

If you get errors that look like "function xxxx take 2 positional arguments but recieved 4" then it's that we enforced the way to pass arguments. Double check the function signature in your documentation and IDE, it should be just a matter of specifying the argument name or not. Open an issue if you're having trouble.

In practice we don't expect much code to break, that seems unlikely.

If you're looking for some ressources:

What's Changed

New Contributors

Full Changelog: https://github.com/gabrieldemarmiesse/python-on-whales/compare/v0.66.0...v0.67.0

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=python-on-whales&package-manager=pip&previous-version=0.66.0&new-version=0.67.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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-automerge-start) [//]: # (dependabot-automerge-end) ---
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 ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements/constraints.txt | 9 +++++---- requirements/dev.txt | 12 +++++++----- requirements/test.txt | 2 +- 3 files changed, 13 insertions(+), 10 deletions(-) diff --git a/requirements/constraints.txt b/requirements/constraints.txt index fe961939484..16a634c19e7 100644 --- a/requirements/constraints.txt +++ b/requirements/constraints.txt @@ -168,7 +168,7 @@ pytest-mock==3.12.0 # via -r requirements/test.in python-dateutil==2.8.2 # via time-machine -python-on-whales==0.66.0 +python-on-whales==0.67.0 # via -r requirements/test.in pytz==2021.3 # via babel @@ -188,16 +188,16 @@ setuptools-git==1.2 six==1.16.0 # via # python-dateutil + # sphinx # virtualenv slotscheck==0.17.1 # via -r requirements/lint.in snowballstemmer==2.1.0 # via sphinx -sphinx==7.2.6 +sphinx==7.1.2 # via # -r requirements/doc.in # sphinxcontrib-blockdiag - # sphinxcontrib-serializinghtml # sphinxcontrib-spelling # sphinxcontrib-towncrier sphinxcontrib-applehelp==1.0.2 @@ -212,7 +212,7 @@ sphinxcontrib-jsmath==1.0.1 # via sphinx sphinxcontrib-qthelp==1.0.3 # via sphinx -sphinxcontrib-serializinghtml==1.1.9 +sphinxcontrib-serializinghtml==1.1.5 # via sphinx sphinxcontrib-spelling==8.0.0 ; platform_system != "Windows" # via -r requirements/doc-spelling.in @@ -280,3 +280,4 @@ setuptools==68.0.0 # via # blockdiag # pip-tools + # sphinx diff --git a/requirements/dev.txt b/requirements/dev.txt index fb7bd011352..e296118e922 100644 --- a/requirements/dev.txt +++ b/requirements/dev.txt @@ -159,7 +159,7 @@ pytest-mock==3.12.0 # via -r requirements/test.in python-dateutil==2.8.2 # via time-machine -python-on-whales==0.66.0 +python-on-whales==0.67.0 # via -r requirements/test.in pytz==2023.3.post1 # via babel @@ -177,16 +177,17 @@ requests==2.31.0 setuptools-git==1.2 # via -r requirements/test.in six==1.16.0 - # via python-dateutil + # via + # python-dateutil + # sphinx slotscheck==0.17.1 # via -r requirements/lint.in snowballstemmer==2.2.0 # via sphinx -sphinx==7.2.6 +sphinx==7.1.2 # via # -r requirements/doc.in # sphinxcontrib-blockdiag - # sphinxcontrib-serializinghtml # sphinxcontrib-towncrier sphinxcontrib-applehelp==1.0.4 # via sphinx @@ -200,7 +201,7 @@ sphinxcontrib-jsmath==1.0.1 # via sphinx sphinxcontrib-qthelp==1.0.3 # via sphinx -sphinxcontrib-serializinghtml==1.1.9 +sphinxcontrib-serializinghtml==1.1.5 # via sphinx sphinxcontrib-towncrier==0.4.0a0 # via -r requirements/doc.in @@ -268,3 +269,4 @@ setuptools==68.0.0 # blockdiag # nodeenv # pip-tools + # sphinx diff --git a/requirements/test.txt b/requirements/test.txt index 0bb559cd969..7a9e6f1c50a 100644 --- a/requirements/test.txt +++ b/requirements/test.txt @@ -84,7 +84,7 @@ pytest-mock==3.12.0 # via -r requirements/test.in python-dateutil==2.8.2 # via time-machine -python-on-whales==0.66.0 +python-on-whales==0.67.0 # via -r requirements/test.in re-assert==1.1.0 # via -r requirements/test.in