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 development-dependencies group with 4 updates #614

Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 27, 2024

Bumps the development-dependencies group with 4 updates: hypothesis, ipython, mypy and autodocsumm.

Updates hypothesis from 6.115.3 to 6.115.5

Commits
  • b9d41db Bump hypothesis-python version to 6.115.5 and update changelog
  • 99f9627 Merge pull request #4136 from HypothesisWorks/create-pull-request/patch
  • 5f7ca9f Bump hypothesis-python version to 6.115.4 and update changelog
  • 8f93105 Merge pull request #4142 from HypothesisWorks/DRMacIver/qualname-in-pretty
  • 479ca98 Include namespace classes in pretty printing
  • ef9942d Merge pull request #4145 from HypothesisWorks/DRMacIver/disable-py314-builds
  • a373e61 fix typecheck again
  • c651861 Disable py314 builds until 3.14 is a bit more reliable
  • 6f1baec fix from_type(type) regression
  • f011f1a work around mypy issues
  • Additional commits viewable in compare view

Updates ipython from 8.28.0 to 8.29.0

Commits

Updates mypy from 1.12.1 to 1.13.0

Changelog

Sourced from mypy's changelog.

Mypy Release Notes

Next release

Mypy 1.13

We’ve just uploaded mypy 1.13 to the Python Package Index (PyPI). Mypy is a static type checker for Python. You can install it as follows:

python3 -m pip install -U mypy

You can read the full documentation for this release on Read the Docs.

Note that unlike typical releases, Mypy 1.13 does not have any changes to type checking semantics from 1.12.1.

Improved performance

Mypy 1.13 contains several performance improvements. Users can expect mypy to be 5-20% faster. In environments with long search paths (such as environments using many editable installs), mypy can be significantly faster, e.g. 2.2x faster in the use case targeted by these improvements.

Mypy 1.13 allows use of the orjson library for handling the cache instead of the stdlib json, for improved performance. You can ensure the presence of orjson using the faster-cache extra:

python3 -m pip install -U mypy[faster-cache]

Mypy may depend on orjson by default in the future.

These improvements were contributed by Shantanu.

List of changes:

  • Significantly speed up file handling error paths (Shantanu, PR 17920)
  • Use fast path in modulefinder more often (Shantanu, PR 17950)
  • Let mypyc optimise os.path.join (Shantanu, PR 17949)
  • Make is_sub_path faster (Shantanu, PR 17962)
  • Speed up stubs suggestions (Shantanu, PR 17965)
  • Use sha1 for hashing (Shantanu, PR 17953)
  • Use orjson instead of json, when available (Shantanu, PR 17955)
  • Add faster-cache extra, test in CI (Shantanu, PR 17978)

Acknowledgements

Thanks to all mypy contributors who contributed to this release:

  • Shantanu Jain
  • Jukka Lehtosalo

Mypy 1.12

We’ve just uploaded mypy 1.12 to the Python Package Index (PyPI). Mypy is a static type

... (truncated)

Commits

Updates autodocsumm from 0.2.13 to 0.2.14

Release notes

Sourced from autodocsumm's releases.

v0.2.14: autoexception-support and class member fixes

What's Changed

Full Changelog: Chilipp/autodocsumm@v0.2.13...v0.2.14

Commits
  • f81147e Merge pull request #104 from Chilipp/autoexception-support
  • db473cf remove tests for sphinx==3.*
  • 375b1c9 add autoexception to docs
  • 4e51644 implement test for exception documenter
  • ec89d70 implement exception documenter
  • 811352b Merge pull request #101 from theOehrly/fix-69
  • 0286ca8 Merge pull request #100 from theOehrly/cleanup
  • 16bcd1c exclude line from coverage
  • 5ef1b47 Merge pull request #99 from theOehrly/fix-89
  • e4319d4 don't document class attributes that are an alias of another class
  • Additional commits viewable in compare view

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

@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Oct 27, 2024
@github-actions github-actions bot enabled auto-merge October 27, 2024 03:36
Bumps the development-dependencies group with 4 updates: [hypothesis](https://github.com/HypothesisWorks/hypothesis), [ipython](https://github.com/ipython/ipython), [mypy](https://github.com/python/mypy) and [autodocsumm](https://github.com/Chilipp/autodocsumm).


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

Updates `ipython` from 8.28.0 to 8.29.0
- [Release notes](https://github.com/ipython/ipython/releases)
- [Commits](ipython/ipython@8.28.0...8.29.0)

Updates `mypy` from 1.12.1 to 1.13.0
- [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md)
- [Commits](python/mypy@v1.12.1...v1.13.0)

Updates `autodocsumm` from 0.2.13 to 0.2.14
- [Release notes](https://github.com/Chilipp/autodocsumm/releases)
- [Commits](Chilipp/autodocsumm@v0.2.13...v0.2.14)

---
updated-dependencies:
- dependency-name: hypothesis
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: ipython
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: mypy
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: autodocsumm
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/pip/development-dependencies-cf8ee7ea76 branch from 8f279d2 to 8d8f55c Compare October 27, 2024 03:43
@github-actions github-actions bot merged commit 4f63e41 into develop Oct 27, 2024
13 checks passed
@dependabot dependabot bot deleted the dependabot/pip/development-dependencies-cf8ee7ea76 branch October 27, 2024 03:49
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