Thanks to visit codestin.com
Credit goes to github.com

Skip to content

fix(deps): update mend: high confidence minor and patch dependency updates #70

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

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from

Conversation

mend-for-github-com[bot]
Copy link

@mend-for-github-com mend-for-github-com bot commented Feb 28, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
coverage 6.2 -> 6.5.0 age adoption passing confidence
fastjsonschema 2.15.3 -> 2.21.1 age adoption passing confidence
flake8-black ^0.2.3 -> ^0.3.0 age adoption passing confidence
flake8-bugbear (changelog) 22.4.25 -> 22.12.6 age adoption passing confidence
flake8-eradicate 1.2.1 -> 1.5.0 age adoption passing confidence
flake8-isort (changelog) 4.1.1 -> 4.2.0 age adoption passing confidence
isort (changelog) 5.10.1 -> 5.13.2 age adoption passing confidence
mkdocs-material (changelog) 8.2.7 -> 8.5.11 age adoption passing confidence
pdoc3 (source) ^0.10.0 -> ^0.11.0 age adoption passing confidence
pytest (changelog) 7.0.1 -> 7.4.4 age adoption passing confidence
pytest-asyncio (changelog) ^0.16.0 -> ^0.26.0 age adoption passing confidence
pytest-mock (changelog) 3.6.1 -> 3.14.1 age adoption passing confidence
xenon 0.9.0 -> 0.9.3 age adoption passing confidence

Release Notes

nedbat/coveragepy (coverage)

v6.5.0

Compare Source

  • The JSON report now includes details of which branches were taken, and which
    are missing for each file. Thanks, Christoph Blessing <pull 1438_>. Closes
    issue 1425
    .

  • Starting with coverage.py 6.2, class statements were marked as a branch.
    This wasn't right, and has been reverted, fixing issue 1449_. Note this
    will very slightly reduce your coverage total if you are measuring branch
    coverage.

  • Packaging is now compliant with PEP 517, closing issue 1395.

  • A new debug option --debug=pathmap shows details of the remapping of
    paths that happens during combine due to the [paths] setting.

  • Fix an internal problem with caching of invalid Python parsing. Found by
    OSS-Fuzz, fixing their bug 50381_.

.. _bug 50381: https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=50381
.. _PEP 517: https://peps.python.org/pep-0517/
.. _issue 139https://github.com/nedbat/coveragepy/issues/1395395
.. _issue 14https://github.com/nedbat/coveragepy/issues/14251425
.. _issue 1https://github.com/nedbat/coveragepy/issues/1449/1449
.. _pull https://github.com/nedbat/coveragepy/pull/1438l/1438

.. _changes_6-4-4:

v6.4.4

Compare Source

  • Wheels are now provided for Python 3.11.

.. _changes_6-4-3:

v6.4.3

Compare Source

  • Fix a failure when combining data files if the file names contained glob-like
    patterns. Thanks, Michael Krebs and Benjamin Schubert <pull 1405_>_.

  • Fix a messaging failure when combining Windows data files on a different
    drive than the current directory, closing issue 1428. Thanks, Lorenzo Micò <pull 1430_>.

  • Fix path calculations when running in the root directory, as you might do in
    a Docker container. Thanks Arthur Rio <pull 1403_>_.

  • Filtering in the HTML report wouldn't work when reloading the index page.
    This is now fixed. Thanks, Marc Legendre <pull 1413_>_.

  • Fix a problem with Cython code measurement, closing issue 972. Thanks,
    Matus Valo <pull 1347_>
    .

.. _issue 972:https://github.com/nedbat/coveragepy/issues/9722
.. _issue 1428https://github.com/nedbat/coveragepy/issues/142828
.. _pull 134https://github.com/nedbat/coveragepy/pull/1347347
.. _pull 14https://github.com/nedbat/coveragepy/issues/14031403
.. _pull 1https://github.com/nedbat/coveragepy/issues/1405/1405
.. _pull https://github.com/nedbat/coveragepy/issues/1413s/1413
.. _pullhttps://github.com/nedbat/coveragepy/pull/1430ll/1430

.. _changes_6-4-2:

v6.4.2

Compare Source

  • Updated for a small change in Python 3.11.0 beta 4: modules now start with a
    line with line number 0, which is ignored. This line cannot be executed, so
    coverage totals were thrown off. This line is now ignored by coverage.py,
    but this also means that truly empty modules (like __init__.py) have no
    lines in them, rather than one phantom line. Fixes issue 1419_.

  • Internal debugging data added to sys.modules is now an actual module, to
    avoid confusing code that examines everything in sys.modules. Thanks,
    Yilei Yang <pull 1399_>_.

.. _issue 1419:https://github.com/nedbat/coveragepy/issues/14199
.. _pull 1399https://github.com/nedbat/coveragepy/pull/139999

.. _changes_6-4-1:

v6.4.1

Compare Source

  • Greatly improved performance on PyPy, and other environments that need the
    pure Python trace function. Thanks, Carl Friedrich Bolz-Tereick (pull 1381_ and pull 1388). Slightly improved performance when using the C
    trace function, as most environments do. Closes issue 1339
    .

  • The conditions for using tomllib from the standard library have been made
    more precise, so that 3.11 alphas will continue to work. Closes issue 1390_.

.. _issue 1339:https://github.com/nedbat/coveragepy/issues/13399
.. _pull 1381https://github.com/nedbat/coveragepy/pull/138181
.. _pull 138https://github.com/nedbat/coveragepy/pull/1388388
.. _issue 13https://github.com/nedbat/coveragepy/issues/13901390

.. _changes_64:

v6.4

Compare Source

  • Fix: multi-line with statements could cause contained branches to be
    incorrectly marked as missing (issue 1880_). This is now fixed.

.. _issue 1880:https://github.com/nedbat/coveragepy/issues/18800

.. _changes_7-6-3:

v6.3.3

Compare Source

  • Fix: Coverage.py now builds successfully on CPython 3.11 (3.11.0b1) again.
    Closes issue 1367_. Some results for generators may have changed.

.. _issue 1367:https://github.com/nedbat/coveragepy/issues/13677

.. _changes_632:

v6.3.2

Compare Source

  • Fix: adapt to pypy3.9's decorator tracing behavior. It now traces function
    decorators like CPython 3.8: both the @​-line and the def-line are traced.
    Fixes issue 1326_.

  • Debug: added pybehave to the list of :ref:coverage debug <cmd_debug>
    and :ref:cmd_run_debug options.

  • Fix: show an intelligible error message if --concurrency=multiprocessing
    is used without a configuration file. Closes issue 1320_.

.. _issue 1320:https://github.com/nedbat/coveragepy/issues/13200
.. _issue 1326https://github.com/nedbat/coveragepy/issues/132626

.. _changes_631:

v6.3.1

Compare Source

  • Fix: deadlocks could occur when terminating processes. Some of these
    deadlocks (described in issue 1310_) are now fixed.

  • Fix: a signal handler was being set from multiple threads, causing an error:
    "ValueError: signal only works in main thread". This is now fixed, closing
    issue 1312_.

  • Fix: --precision on the command-line was being ignored while considering
    --fail-under. This is now fixed, thanks to
    Marcelo Trylesinski <pull 1317_>_.

  • Fix: releases no longer provide 3.11.0-alpha wheels. Coverage.py uses CPython
    internal fields which are moving during the alpha phase. Fixes issue 1316_.

.. _issue 1310:https://github.com/nedbat/coveragepy/issues/13100
.. _issue 1312https://github.com/nedbat/coveragepy/issues/131212
.. _issue 131https://github.com/nedbat/coveragepy/issues/1316316
.. _pull 13https://github.com/nedbat/coveragepy/pull/13171317

.. _changes_63:

v6.3

Compare Source

  • Fix: nested context managers could incorrectly be analyzed to flag a missing
    branch on the last context manager, as described in issue 1876_. This is
    now fixed.

  • Fix: the missing branch message about not exiting a module had an extra
    "didn't," as described in issue 1873_. This is now fixed.

.. _issue 1873:https://github.com/nedbat/coveragepy/issues/18733
.. _issue 1876https://github.com/nedbat/coveragepy/issues/187676

.. _changes_7-6-2:

horejsek/python-fastjsonschema (fastjsonschema)

v2.21.1

Compare Source

v2.21.0

Compare Source

v2.20.0

Compare Source

v2.19.1

Compare Source

v2.19.0

Compare Source

v2.18.1

Compare Source

v2.18.0

Compare Source

v2.17.1

Compare Source

v2.17.0

Compare Source

v2.16.3

Compare Source

v2.16.2

Compare Source

v2.16.1

Compare Source

v2.16.0

Compare Source

peterjc/flake8-black (flake8-black)

v0.3.6

Compare Source

v0.3.5

Compare Source

v0.3.4

Compare Source

v0.3.3

Compare Source

v0.3.2

Compare Source

v0.3.1

Compare Source

v0.3.0

Compare Source

v0.2.5

Compare Source

PyCQA/flake8-bugbear (flake8-bugbear)

v22.12.6

Compare Source

  • Add B905: zip() without an explicit strict= parameter. (#​314)
  • B027: ignore @​overload when typing is imported with other names (#​309)

v22.10.27

Compare Source

  • B027: Ignore @​overload decorator (#​306)
  • B023: Also fix map (#​305)
  • B023: Avoid false alarms with filter, reduce, key= and return. Added tests for functools (#​303)

v22.10.25

Compare Source

  • Make B015 and B018 messages slightly more polite (#​298)
  • Add B027: Empty method in abstract base class with no abstract decorator
  • Multiple B024 false positive fixes
  • Move CI to use tox (#​294)
  • Move to using PEP621 / pyproject.toml package (#​291)
  • Tested in 3.11

v22.9.23

Compare Source

  • add B026: find argument unpacking after keyword argument (#​287)
  • Move to setup.cfg like flake8 (#​288)

v22.9.11

Compare Source

  • Add B025: Find duplicate except clauses (#​284)

v22.8.23

Compare Source

  • Add B024 error code to message for B024 (#​276)

v22.8.22

Compare Source

  • Add B024: abstract base class with no abstract methods (#​273)

v22.7.1

Compare Source

v22.6.22

Compare Source

  • Don't crash when select / extend_select are None (#​261)
  • Ignore lambda arguments for B020 (#​259)
  • Fix missing space typos in B021, B022 error messages (#​257)
wemake-services/flake8-eradicate (flake8-eradicate)

v1.5.0

Features
  • Drops python3.7 support, because it has almost reached its EOL
  • Adds flake8@&#8203;6 support and drops support of flake8<5
Misc
  • Updates many dependencies

v1.4.0

Compare Source

Features
  • Drops python3.6 support
  • Switches from pkg_resources to importlib_metadata
Misc

v1.3.0

Compare Source

Features
  • Adds flake8@&#8203;5.0 support
gforcada/flake8-isort (flake8-isort)

v4.2.0

Compare Source

  • Fix compatibility with flake8 version 5. [nhymxu]

v4.1.2

Compare Source

  • Release it as a wheel as well. [gforcada]
PyCQA/isort (isort)

v5.13.2

Compare Source

v5.13.1

Compare Source

v5.13.0

Compare Source

v5.12.0

Compare Source

  • Removed support for Python 3.7
    • Fixed incompatiblity with latest poetry version
    • Added support for directory limitations within built in git hook

v5.11.5

Compare Source

  • Fixed incompatiblity with latest poetry version

v5.11.4

Compare Source

v5.11.3

Compare Source

v5.11.2

Compare Source

v5.11.1

Compare Source

v5.11.0

Compare Source

squidfunk/mkdocs-material (mkdocs-material)

v8.5.11: mkdocs-material-8.5.11

Compare Source

v8.5.10: mkdocs-material-8.5.10

Compare Source

  • Adjusted CSS to better allow for custom primary and accent colors
  • Fixed #​4620: Primary color is not applied (8.5.9 regression)

v8.5.9: mkdocs-material-8.5.9

Compare Source

  • Fixed #​4600: Illegible links for black/white primary colors (8.5.8 regression)
  • Fixed #​4594: Need to set schema to change link color

v8.5.8: mkdocs-material-8.5.8

Compare Source

  • Added support for always showing settings in cookie consent
  • Fixed #​4571: Buttons invisible if primary color is white or black
  • Fixed #​4517: Illegible note in sequence diagram when using slate scheme

v8.5.7: mkdocs-material-8.5.7

Compare Source

  • Deprecated additional admonition qualifiers to reduce size of CSS
  • Fixed #​4511: Search boost does not apply to sections

v8.5.6: mkdocs-material-8.5.6

Compare Source

  • Modernized appearance of admonitions (with fallback, see docs)
  • Improved appearance of inline code blocks in admonition titles

v8.5.5: mkdocs-material-8.5.5

Compare Source

  • Updated MkDocs to 1.4
  • Fixed compatibility issues with MkDocs 1.4
  • Fixed #​4430: build error when enabling consent without repository URL

v8.5.4: mkdocs-material-8.5.4

Compare Source

  • Fixed expand icons shift on sidebar overflow (using scrollbar-gutter)
  • Fixed #​4429: Text in sequence diagrams overflows in Firefox

v8.5.3: mkdocs-material-8.5.3

Compare Source

  • Fixed build error when enabling cookie consent without analytics
  • Fixed #​4381: Code blocks render ligatures for some fonts

v8.5.2: mkdocs-material-8.5.2

Compare Source

  • Updated Mermaid.js to version 9.1.7
  • Fixed overly large headlines in search results (8.5.0 regression)
  • Fixed #​4358: Navigation sections appear as clickable (8.5.0 regression)
  • Fixed #​4356: GitHub repository statistics fetched before consent

v8.5.1: mkdocs-material-8.5.1

Compare Source

  • Fixed #​4366: Removed dependencies with native extensions

v8.5.0: mkdocs-material-8.5.0

Compare Source

  • Added support for social cards
  • Added support for code annotation anchor links (deep linking)
  • Added support for code annotation comment stripping (syntax modifier)
  • Added support for sidebars scrolling automatically to active item
  • Added support for anchor following table of contents (= auto scroll)
  • Added support for tag icons

v8.4.4: mkdocs-material-8.4.4

Compare Source

  • Moved comments integration to separate partial (comments.html)

v8.4.3: mkdocs-material-8.4.3

Compare Source

  • Added Simple Icons to bundled icons (+2,300 icons)
  • Added support for changing edit icon
  • Moved page actions to separate partial (actions.html)
  • Fixed #​4291: Version switching doesn't stay on page when anchors are used
  • Fixed #​4327: Links in data tables do not receive link styling

v8.4.2: mkdocs-material-8.4.2

Compare Source

  • Updated Slovenian translations
  • Fixed #​4277: Feedback widget hidden after navigation with instant loading
  • Fixed numeric tags in front matter breaking search functionality

v8.4.1: mkdocs-material-8.4.1

Compare Source

  • Updated Croatian and Hebrew translations

v8.4.0: mkdocs-material-8.4.0

Compare Source

  • Added support for cookie consent
  • Added support for feedback widget (Was this page helpful?)
  • Added support for dismissable announcement bar
  • Added Armenian, Lithuanian, Tagalog, and Urdu translations

v8.3.9: mkdocs-material-8.3.9

Compare Source

  • Updated Taiwanese translations for search
  • Allow ids for content tabs with special characters (for mkdocstrings)
  • Fixed #​4083: home not clickable when using versioning (8.3.5 regression)

v8.3.8: mkdocs-material-8.3.8

Compare Source

  • Fixed #​4053: Limit width of videos to content area
  • Fixed empty tags in front matter breaking search

v8.3.7: mkdocs-material-8.3.7

Compare Source

  • Fixed search being stuck initializing when using tags (8.3.4 regression)

v8.3.6: mkdocs-material-8.3.6

Compare Source

  • Fixed #​4028: Links not clickable when using versioning (8.3.5 regression)

v8.3.5: mkdocs-material-8.3.5

Compare Source

  • Fixed #​4012: Stay on page not working for alias of active version

v8.3.4: mkdocs-material-8.3.4

Compare Source

  • Fixed #​4004: Tags with multiple words not searchable

v8.3.3: mkdocs-material-8.3.3

Compare Source

  • Fixed #​4000: Mermaid diagrams too dark in dark mode (8.3.0 regression)

v8.3.2: mkdocs-material-8.3.2

Compare Source

  • Fixed #​3987: Custom admonition icons don't work when defining color palette

v8.3.1: mkdocs-material-8.3.1

Compare Source

  • Bump required Jinja version to 3.0.2
  • Removed unnecessary conditions in templates
  • Fixed scroll offset when content tabs are brought into view
  • Fixed #​3977: Content tabs snapping oddly in Firefox
  • Fixed #​3983: Missing condition in footer partial (8.3.0 regression)

v8.3.0: mkdocs-material-8.3.0

Compare Source

  • Added support for custom admonition icons
  • Added support for linking of content tabs
  • Added support for boosting pages in search
  • Added support for hiding footer navigation
  • Added previous/next indicators to content tabs
  • Improved typeset link colors in light and dark modes

v8.2.16: mkdocs-material-8.2.16

Compare Source

  • Fixed #​3957: Only animate code annotations when visible (save CPU cycles)

v8.2.15: mkdocs-material-8.2.15

Compare Source

  • Added Uzbek translations
  • Fixed spacing for code block results in content tabs

v8.2.14: mkdocs-material-8.2.14

Compare Source

  • Fixed missing top right rounded border on admonition
  • Fixed #​3886: 4xx status codes not handled when using instant loading

v8.2.13: mkdocs-material-8.2.13

Compare Source

  • Fixed #​3865: Tags index links to tagged pages 404 on Windows
  • Fixed #​3866: Bump required Python version from 3.6+ to 3.7+

v8.2.12: mkdocs-material-8.2.12

Compare Source

  • Added support for GitHub-style hash fragments for dark/light images
  • Improved rendering of nested code blocks in content tabs and annotations
  • Fixed #​3862: Upgraded to latest Pygments and Python Markdown Extensions

v8.2.11: mkdocs-material-8.2.11

Compare Source

  • Temporarily pinned Pygments to <2.12
  • Temporarily pinned Python Markdown Extensions to <9.4
  • Improved rendering of code annotation markers

v8.2.10: mkdocs-material-8.2.10

Compare Source

  • Added Macedonian translations
  • Updated Mermaid.js to version 9.0.1
  • Switched sidebar title in mobile navigation to bold font
  • Fixed color of arrows in class and state diagrams for dark mode
  • Fixed #​3836: Inline admonitions overlayed by code block titles

v8.2.9: mkdocs-material-8.2.9

Compare Source

  • Mitigate flicker on color palette switch by disabling all transitions
  • Fixed search suggestions not triggered when following deep link
  • Fixed incorrectly computed header height when using instant loading
  • Fixed #​3782: Admonition titles have extra pixels on wide screens in Firefox
  • Fixed [#​3802](https://redirect.github.com/

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

Copy link
Author

mend-for-github-com bot commented Feb 28, 2024

⚠ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: poetry.lock
Creating virtualenv aws-lambda-powertools-j4tV00Qc-py3.12 in /home/ubuntu/.cache/pypoetry/virtualenvs
Updating dependencies
Resolving dependencies...


The current project's Python requirement (>=3.6.2,<4.0.0) is not compatible with some of the required packages Python requirement:
  - flake8-black requires Python >=3.7, so it will not be satisfied for Python >=3.6.2,<3.7
  - flake8-black requires Python >=3.7, so it will not be satisfied for Python >=3.6.2,<3.7
  - flake8-black requires Python >=3.7, so it will not be satisfied for Python >=3.6.2,<3.7
  - flake8-black requires Python >=3.7, so it will not be satisfied for Python >=3.6.2,<3.7
  - flake8-black requires Python >=3.7, so it will not be satisfied for Python >=3.6.2,<3.7

Because no versions of flake8-black match >0.3.0,<0.3.2 || >0.3.2,<0.3.3 || >0.3.3,<0.3.4 || >0.3.4,<0.3.5 || >0.3.5,<0.3.6 || >0.3.6,<0.4.0
 and flake8-black (0.3.0) depends on black (>=22.1.0), flake8-black (>=0.3.0,<0.3.2 || >0.3.2,<0.3.3 || >0.3.3,<0.3.4 || >0.3.4,<0.3.5 || >0.3.5,<0.3.6 || >0.3.6,<0.4.0) requires black (>=22.1.0).
And because flake8-black (0.3.2) requires Python >=3.7, flake8-black (>=0.3.0,<0.3.3 || >0.3.3,<0.3.4 || >0.3.4,<0.3.5 || >0.3.5,<0.3.6 || >0.3.6,<0.4.0) requires black (>=22.1.0).
And because flake8-black (0.3.3) requires Python >=3.7
 and flake8-black (0.3.4) requires Python >=3.7, flake8-black (>=0.3.0,<0.3.5 || >0.3.5,<0.3.6 || >0.3.6,<0.4.0) requires black (>=22.1.0).
And because flake8-black (0.3.5) requires Python >=3.7
 and flake8-black (0.3.6) requires Python >=3.7, flake8-black (>=0.3.0,<0.4.0) requires black (>=22.1.0).
So, because aws-lambda-powertools depends on both black (^21.12b0) and flake8-black (^0.3.0), version solving failed.

  • Check your dependencies Python requirement: The Python requirement can be specified via the `python` or `markers` properties
    
    For flake8-black, a possible solution would be to set the `python` property to ">=3.7,<4.0.0"
    For flake8-black, a possible solution would be to set the `python` property to ">=3.7,<4.0.0"
    For flake8-black, a possible solution would be to set the `python` property to ">=3.7,<4.0.0"
    For flake8-black, a possible solution would be to set the `python` property to ">=3.7,<4.0.0"
    For flake8-black, a possible solution would be to set the `python` property to ">=3.7,<4.0.0"

    https://python-poetry.org/docs/dependency-specification/#python-restricted-dependencies,
    https://python-poetry.org/docs/dependency-specification/#using-environment-markers

@mend-for-github-com mend-for-github-com bot changed the title fix(deps): update mend: high confidence minor and patch dependency updates chore(deps): update mend: high confidence minor and patch dependency updates Mar 7, 2024
@mend-for-github-com mend-for-github-com bot changed the title chore(deps): update mend: high confidence minor and patch dependency updates fix(deps): update mend: high confidence minor and patch dependency updates Mar 11, 2024
@mend-for-github-com mend-for-github-com bot changed the title fix(deps): update mend: high confidence minor and patch dependency updates chore(deps): update mend: high confidence minor and patch dependency updates Mar 12, 2024
@mend-for-github-com mend-for-github-com bot changed the title chore(deps): update mend: high confidence minor and patch dependency updates fix(deps): update mend: high confidence minor and patch dependency updates Apr 8, 2024
@mend-for-github-com mend-for-github-com bot changed the title fix(deps): update mend: high confidence minor and patch dependency updates chore(deps): update mend: high confidence minor and patch dependency updates Apr 9, 2024
@mend-for-github-com mend-for-github-com bot changed the title chore(deps): update mend: high confidence minor and patch dependency updates fix(deps): update mend: high confidence minor and patch dependency updates May 7, 2024
@mend-for-github-com mend-for-github-com bot changed the title fix(deps): update mend: high confidence minor and patch dependency updates chore(deps): update mend: high confidence minor and patch dependency updates May 22, 2024
Copy link
Author

mend-for-github-com bot commented May 22, 2024

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: poetry.lock
Updating dependencies
Resolving dependencies...


The current project's Python requirement (>=3.6.2,<4.0.0) is not compatible with some of the required packages Python requirement:
  - pytest-asyncio requires Python >=3.9, so it will not be satisfied for Python >=3.6.2,<3.9

Because pytest-asyncio (0.26.0) requires Python >=3.9
 and no versions of pytest-asyncio match >0.26.0,<0.27.0, pytest-asyncio is forbidden.
So, because aws-lambda-powertools depends on pytest-asyncio (^0.26.0), version solving failed.

  • Check your dependencies Python requirement: The Python requirement can be specified via the `python` or `markers` properties
    
    For pytest-asyncio, a possible solution would be to set the `python` property to ">=3.9,<4.0.0"

    https://python-poetry.org/docs/dependency-specification/#python-restricted-dependencies,
    https://python-poetry.org/docs/dependency-specification/#using-environment-markers

@mend-for-github-com mend-for-github-com bot changed the title chore(deps): update mend: high confidence minor and patch dependency updates fix(deps): update mend: high confidence minor and patch dependency updates May 25, 2024
@mend-for-github-com mend-for-github-com bot changed the title fix(deps): update mend: high confidence minor and patch dependency updates chore(deps): update mend: high confidence minor and patch dependency updates Jun 5, 2024
@mend-for-github-com mend-for-github-com bot changed the title chore(deps): update mend: high confidence minor and patch dependency updates fix(deps): update mend: high confidence minor and patch dependency updates Jun 9, 2024
@mend-for-github-com mend-for-github-com bot force-pushed the whitesource-remediate/mend-high-confidence-minor-and-patch-dependency-updates branch from 3d86905 to 6c0d870 Compare August 29, 2024 03:08
@mend-for-github-com mend-for-github-com bot force-pushed the whitesource-remediate/mend-high-confidence-minor-and-patch-dependency-updates branch from 6c0d870 to ebb5ba8 Compare December 18, 2024 04:27
@mend-for-github-com mend-for-github-com bot force-pushed the whitesource-remediate/mend-high-confidence-minor-and-patch-dependency-updates branch from ebb5ba8 to 5bbb977 Compare February 14, 2025 04:44
@mend-for-github-com mend-for-github-com bot force-pushed the whitesource-remediate/mend-high-confidence-minor-and-patch-dependency-updates branch from 5bbb977 to 16f2837 Compare April 21, 2025 04:04
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants