Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 10, 2024

Bumps the dependencies group with 7 updates:

Package From To
packaging 24.0 24.1
typing-extensions 4.12.1 4.12.2
pyvista 0.43.8 0.43.9
ansys-dpf-core 0.12.1 0.12.2
sphinx-autodoc-typehints 2.1.0 2.1.1
pytest 8.2.1 8.2.2
hypothesis 6.103.0 6.103.1

Updates packaging from 24.0 to 24.1

Release notes

Sourced from packaging's releases.

24.1

What's Changed

New Contributors

Full Changelog: pypa/packaging@24.0...24.1

Changelog

Sourced from packaging's changelog.

24.1 - 2024-06-10


No unreleased changes.
Commits
  • 85442b8 Bump for release
  • 3e67fc7 Work around platform.python_version() returning non PEP 440 compliant versi...
  • 32deafe Bump the github-actions group with 3 updates (#789)
  • e0dda88 Document markers.default_environment() (#753)
  • cc938f9 Modernise type annotations using FA rules from ruff (#785)
  • 757f559 Fix typo in _parser docstring (#784)
  • ec9f203 Bump the github-actions group with 4 updates (#782)
  • 5cbe1e4 Add support for Python 3.13 and drop EOL 3.7 (#783)
  • cb8fd38 pyupgrade/black/isort/flake8 → ruff (#769)
  • e8002b1 Bump for development
  • See full diff in compare view

Updates typing-extensions from 4.12.1 to 4.12.2

Release notes

Sourced from typing-extensions's releases.

4.12.2

  • Fix regression in v4.12.0 where specialization of certain generics with an overridden __eq__ method would raise errors. Patch by Jelle Zijlstra.
  • Fix tests so they pass on 3.13.0b2
Changelog

Sourced from typing-extensions's changelog.

Release 4.12.2 (June 7, 2024)

  • Fix regression in v4.12.0 where specialization of certain generics with an overridden __eq__ method would raise errors. Patch by Jelle Zijlstra.
  • Fix tests so they pass on 3.13.0b2
Commits

Updates pyvista from 0.43.8 to 0.43.9

Release notes

Sourced from pyvista's releases.

v0.43.9

Patch release with the following fixes/quality of life changes. This being a patch fix, there are no API changes.

What's Changed

  • "PyQt6-Qt6!=6.6.0,!=6.7.0" "PyQt6!=6.6.0" to fix PyVistaQt and MNE-Python integration tests by @​tkoyama010 #6182
  • Temporarily restrict NumPy version in pyproject.toml by @​adeak #6210

Full Changelog: pyvista/pyvista@v0.43.8...v0.43.9

Commits
  • 4e01bc6 🚀 Patch Release 0.43.9
  • b8fd95e Restrict NumPy version in pyproject.toml (#6210)
  • 59defb8 "PyQt6-Qt6!=6.6.0,!=6.7.0" "PyQt6!=6.6.0" to fix PyVistaQt and MNE-Python i...
  • See full diff in compare view

Updates ansys-dpf-core from 0.12.1 to 0.12.2

Release notes

Sourced from ansys-dpf-core's releases.

v0.12.2 Release Notes

pydpf-core 0.12.2 release for DPF Server 2024.2

What's Changed

Enhancements

Bug fixes

Documentation

CI/CD

Maintenance

Full Changelog: ansys/pydpf-core@v0.12.1...v0.12.2

Commits
  • c2937fd Bump version 0.12.2
  • 311f012 Bump ansys-sphinx-theme from 0.16.2 to 0.16.5 in /requirements (#1601)
  • a5364b1 Add plugins.py module with load_plugin_on_server helper (#1600)
  • 918c515 Add vtk_helpers for DPF to VTK translation (#1581)
  • 24523e3 Add MeshInfo.bodies (#1594)
  • 0816c90 Fix a bug where a new server is run on object creation (#1592)
  • 9d42dcd DataSources.set_result_file_path recognizes .cas/dat.cff and .cas/dat.h5 file...
  • 97588b6 Fix environment PATH pollution by CGrpc servers (#1590)
  • bfa7912 Bump build from 1.0.3 to 1.2.1 in /requirements (#1577)
  • 17a92c8 Bump pytest-sphinx from 0.6.2 to 0.6.3 in /requirements (#1587)
  • Additional commits viewable in compare view

Updates sphinx-autodoc-typehints from 2.1.0 to 2.1.1

Release notes

Sourced from sphinx-autodoc-typehints's releases.

2.1.1

Full Changelog: tox-dev/sphinx-autodoc-typehints@2.1.0...2.1.1

Changelog

Sourced from sphinx-autodoc-typehints's changelog.

Changelog

1.22

  • Allow Sphinx explicitly to write in parallel.
  • Fixed crash when documenting ParamSpecArgs

1.21.7

  • Fixed a bug where if a class has an attribute and a constructor argument with the same name, the constructor argument type would be rendered incorrectly (issue 308)

  • Fixed napoleon handling of numpy docstrings with no specified return type.

1.21.6

  • Fix a Field list ends without a blank line warning (issue 305).

1.21.5

  • More robust determination of rtype location / fix issue 302

1.21.4

  • Improvements to the location of the return type

1.21.3

  • Use format_annotation to render class attribute type annotations

1.21.2

  • Fix overloads support

1.21.1

  • Fix spacing between :rtype: and directives

1.21

  • Handle types from types module
  • If module is _io, use io instead
  • Put rtype before examples or usage section
  • Remove redundant return type for attributes
  • Handle collections.abc.Callable as well as typing.Callable
  • Put Literal args in code blocks

1.20.2

  • Fix Optional role to be data.

... (truncated)

Commits

Updates pytest from 8.2.1 to 8.2.2

Release notes

Sourced from pytest's releases.

8.2.2

pytest 8.2.2 (2024-06-04)

Bug Fixes

  • #12355: Fix possible catastrophic performance slowdown on a certain parametrization pattern involving many higher-scoped parameters.
  • #12367: Fix a regression in pytest 8.2.0 where unittest class instances (a fresh one is created for each test) were not released promptly on test teardown but only on session teardown.
  • #12381: Fix possible "Directory not empty" crashes arising from concurent cache dir (.pytest_cache) creation. Regressed in pytest 8.2.0.

Improved Documentation

  • #12290: Updated Sphinx theme to use Furo instead of Flask, enabling Dark mode theme.
  • #12356: Added a subsection to the documentation for debugging flaky tests to mention lack of thread safety in pytest as a possible source of flakyness.
  • #12363: The documentation webpages now links to a canonical version to reduce outdated documentation in search engine results.
Commits
  • 329d371 Prepare release version 8.2.2
  • 214d098 Merge pull request #12414 from bluetech/backport-12409
  • 153a436 [8.2.x] fixtures: fix catastrophic performance problem in reorder_items
  • b41d5a5 Merge pull request #12412 from pytest-dev/backport-12408-to-8.2.x
  • 9bb73d7 [8.2.x] cacheprovider: fix "Directory not empty" crash from cache directory c...
  • 4569a01 [8.2.x] doc: Update trainings/events (#12402)
  • 1d103e5 [8.2.x] Clarify pytest_ignore_collect docs (#12386)
  • 240a252 [8.2.x] Add html_baseurl to sphinx conf.py (#12372)
  • a5ee3c4 Merge pull request #12370 from pytest-dev/backport-12368-to-8.2.x
  • f7358ae [8.2.x] unittest: fix class instances no longer released on test teardown sin...
  • Additional commits viewable in compare view

Updates hypothesis from 6.103.0 to 6.103.1

Commits

Most Recent Ignore Conditions Applied to This Pull Request
Dependency Name Ignore Conditions
hypothesis [>= 6.84.a, < 6.85]

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 dependencies group with 7 updates:

| Package | From | To |
| --- | --- | --- |
| [packaging](https://github.com/pypa/packaging) | `24.0` | `24.1` |
| [typing-extensions](https://github.com/python/typing_extensions) | `4.12.1` | `4.12.2` |
| [pyvista](https://github.com/pyvista/pyvista) | `0.43.8` | `0.43.9` |
| [ansys-dpf-core](https://github.com/ansys/pydpf-core) | `0.12.1` | `0.12.2` |
| [sphinx-autodoc-typehints](https://github.com/tox-dev/sphinx-autodoc-typehints) | `2.1.0` | `2.1.1` |
| [pytest](https://github.com/pytest-dev/pytest) | `8.2.1` | `8.2.2` |
| [hypothesis](https://github.com/HypothesisWorks/hypothesis) | `6.103.0` | `6.103.1` |


Updates `packaging` from 24.0 to 24.1
- [Release notes](https://github.com/pypa/packaging/releases)
- [Changelog](https://github.com/pypa/packaging/blob/main/CHANGELOG.rst)
- [Commits](pypa/packaging@24.0...24.1)

Updates `typing-extensions` from 4.12.1 to 4.12.2
- [Release notes](https://github.com/python/typing_extensions/releases)
- [Changelog](https://github.com/python/typing_extensions/blob/main/CHANGELOG.md)
- [Commits](python/typing_extensions@4.12.1...4.12.2)

Updates `pyvista` from 0.43.8 to 0.43.9
- [Release notes](https://github.com/pyvista/pyvista/releases)
- [Commits](pyvista/pyvista@v0.43.8...v0.43.9)

Updates `ansys-dpf-core` from 0.12.1 to 0.12.2
- [Release notes](https://github.com/ansys/pydpf-core/releases)
- [Commits](ansys/pydpf-core@v0.12.1...v0.12.2)

Updates `sphinx-autodoc-typehints` from 2.1.0 to 2.1.1
- [Release notes](https://github.com/tox-dev/sphinx-autodoc-typehints/releases)
- [Changelog](https://github.com/tox-dev/sphinx-autodoc-typehints/blob/main/CHANGELOG.md)
- [Commits](tox-dev/sphinx-autodoc-typehints@2.1.0...2.1.1)

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

Updates `hypothesis` from 6.103.0 to 6.103.1
- [Release notes](https://github.com/HypothesisWorks/hypothesis/releases)
- [Commits](HypothesisWorks/hypothesis@hypothesis-python-6.103.0...hypothesis-python-6.103.1)

---
updated-dependencies:
- dependency-name: packaging
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: typing-extensions
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: pyvista
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: ansys-dpf-core
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: sphinx-autodoc-typehints
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: pytest
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: hypothesis
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
...

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 Jun 10, 2024
@wiz-inc-572fc38784
Copy link

Wiz Scan Summary

IaC Misconfigurations 0C 0H 0M 0L 0I
Vulnerabilities 0C 0H 4M 1L 0I
Sensitive Data 0C 0H 0M 0L 0I
Total 0C 0H 4M 1L 0I
Secrets 0🔑

1 similar comment
@wiz-inc-572fc38784
Copy link

Wiz Scan Summary

IaC Misconfigurations 0C 0H 0M 0L 0I
Vulnerabilities 0C 0H 4M 1L 0I
Sensitive Data 0C 0H 0M 0L 0I
Total 0C 0H 4M 1L 0I
Secrets 0🔑

@codecov
Copy link

codecov bot commented Jun 10, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 91.98%. Comparing base (a8b002f) to head (0c5ff86).

Additional details and impacted files
@@           Coverage Diff           @@
##             main     #541   +/-   ##
=======================================
  Coverage   91.98%   91.98%           
=======================================
  Files          82       82           
  Lines        4252     4252           
=======================================
  Hits         3911     3911           
  Misses        341      341           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@greschd greschd enabled auto-merge (squash) June 10, 2024 06:05
@greschd greschd merged commit 15fbd57 into main Jun 10, 2024
@greschd greschd deleted the dependabot/pip/dependencies-4643a4b3c2 branch June 10, 2024 06:05
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.

2 participants