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 across 1 directory with 7 updates #647

Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 29, 2024

Bumps the development-dependencies group with 7 updates in the / directory:

Package From To
types-tqdm 4.67.0.20241119 4.67.0.20241221
hypothesis 6.122.3 6.123.2
ipython 8.30.0 8.31.0
jupyterlab 4.3.3 4.3.4
jupytext 1.16.4 1.16.6
mdformat 0.7.19 0.7.21
mypy 1.13.0 1.14.0

Updates types-tqdm from 4.67.0.20241119 to 4.67.0.20241221

Commits

Updates hypothesis from 6.122.3 to 6.123.2

Release notes

Sourced from hypothesis's releases.

Hypothesis for Python - version 6.123.2

The shrinker now uses the typed choice sequence (issue #3921) when ordering failing examples. As a result, Hypothesis may now report a different minimal failing example for some tests. We expect most cases to remain unchanged.

The canonical version of these notes (with links) is on readthedocs.

Hypothesis for Python - version 6.123.1

Our pytest plugin now emits a warning if you set Pytest's "norecursedirs" config option in such a way that the ".hypothesis" directory would be searched for tests. This reliably indicates that you've made a mistake which slows down test collection, usually assuming that your configuration extends the set of ignored patterns when it actually replaces them. (issue #4200)

The canonical version of these notes (with links) is on readthedocs.

Hypothesis for Python - version 6.123.0

"from_type()" can now handle constructors with required positional- only arguments if they have type annotations. Previously, we only passed arguments by keyword.

The canonical version of these notes (with links) is on readthedocs.

Hypothesis for Python - version 6.122.7

This patch lays some groundwork for migrating our internal representation to the typed choice sequence (issue #3921)

The canonical version of these notes (with links) is on readthedocs.

Hypothesis for Python - version 6.122.6

This patch cleans up some internal code around clamping floats.

The canonical version of these notes (with links) is on readthedocs.

Hypothesis for Python - version 6.122.5

This release improves shrinking in some cases, especially for strategies using "one_of()". This will typically improve shrinking speed and may in some cases improve the end result.

The canonical version of these notes (with links) is on readthedocs.

Hypothesis for Python - version 6.122.4

This patch improves generation performance for the provisional "domains()" strategy, including its derivative strategies "urls()" and "emails()".

The canonical version of these notes (with links) is on readthedocs.

Commits
  • 8250483 Bump hypothesis-python version to 6.123.2 and update changelog
  • 462c5fc Merge pull request #4215 from tybug/sort-key-ir
  • b089be7 reword release, typing
  • 3dbfae2 Merge pull request #4214 from tybug/automate-shrinking-benchmark
  • 681df66 typing
  • 4181f0c this fails test_minimizes_errors_in_teardown due to forced being trivial
  • fb74bd7 this test can go back to normal now!
  • a4c8648 speed up test_shrinks_downwards_to_integers
  • 75d1f42 this test is unsound with a db failure
  • 4657a4f use sort_key_ir for most things
  • Additional commits viewable in compare view

Updates ipython from 8.30.0 to 8.31.0

Commits

Updates jupyterlab from 4.3.3 to 4.3.4

Release notes

Sourced from jupyterlab's releases.

v4.3.4

4.3.4

(Full Changelog)

Bugs fixed

Maintenance and upkeep improvements

Contributors to this release

(GitHub contributors page for this release)

@​bollwyvl | @​Darshan808 | @​davidbrochart | @​jtpio | @​jupyterlab-probot | @​krassowski | @​meeseeksmachine

Changelog

Sourced from jupyterlab's changelog.

4.3.4

(Full Changelog)

Bugs fixed

Maintenance and upkeep improvements

Contributors to this release

(GitHub contributors page for this release)

@​bollwyvl | @​Darshan808 | @​davidbrochart | @​jtpio | @​jupyterlab-probot | @​krassowski | @​meeseeksmachine

Commits

Updates jupytext from 1.16.4 to 1.16.6

Release notes

Sourced from jupytext's releases.

Version 1.16.6

Fixed

  • We fixed a "File Changed" warning when saving notebooks (#1301)

Changed

  • The original file name is easier to infer from the tmp file name in pre-commit hooks (#1289) - thanks to Lunin Leonid for making this change.

Version 1.16.5

Fixed

  • We have fixed a notebook corruption issue when using Jupytext with Jupyter-Collaboration (#1124, jupyter-collaboration 214).
  • We have added the require_hash argument on the Jupytext contents manager. The hash of a paired file is the concatenation of the hash of the text file and the hash for the .ipynb file (#1165)
  • The rst2md tests have been fixed by requiring sphinx<8 (#1266)
  • Some dependencies of the JupyterLab extensions were updated (#1272, #1273, #1280, #1285, #1290)
  • The pre-commit hook is now compatible with log.showsignature=True (#1281). Thanks to Justin Lecher for this fix.

Added

  • Jupytext is now tested with Python 3.13 (#1242). Thanks to Jerry James for the suggested fixes!
  • The extension of a notebook piped into stdin will be taken in the notebook metadata (#1282)
Changelog

Sourced from jupytext's changelog.

1.16.6 (2024-12-16)

Fixed

  • We fixed a "File Changed" warning when saving notebooks (#1301)

Changed

  • The original file name is easier to infer from the tmp file name in pre-commit hooks (#1289) - thanks to Lunin Leonid for making this change.

1.16.5 (2024-12-15)

Fixed

  • We have fixed a notebook corruption issue when using Jupytext with Jupyter-Collaboration (#1124, jupyter-collaboration 214).
  • We have added the require_hash argument on the Jupytext contents manager. The hash of a paired file is the concatenation of the hash of the text file and the hash for the .ipynb file (#1165)
  • The rst2md tests have been fixed by requiring sphinx<8 (#1266)
  • Some dependencies of the JupyterLab extensions were updated (#1272, #1273, #1280, #1285, #1290)
  • The pre-commit hook is now compatible with log.showsignature=True (#1281). Thanks to Justin Lecher for this fix.

Added

  • Jupytext is now tested with Python 3.13 (#1242). Thanks to Jerry James for the suggested fixes!
  • The extension of a notebook piped into stdin will be taken in the notebook metadata (#1282)
Commits
  • 8409313 Combine the two hashes only if the file names differ
  • 1f5c68a always use "-" as delimiter
  • 2b2d4c2 use - as a delimeter
  • 1285531 Update CHANGELOG
  • d0e5b7a Implement require_hash
  • 7ecc406 Add a MIT badge
  • f2e1b9d Ensure that we get the text as text (not json)
  • 8dccab4 Update CHANGELOG
  • 4d95e36 Use metadata to determine the extension of notebooks coming from stdin
  • 4f9b8be Remove defaults channel
  • Additional commits viewable in compare view

Updates mdformat from 0.7.19 to 0.7.21

Commits
  • e07e382 Bump version: 0.7.20 → 0.7.21
  • 3e29016 fix: circular import in plugins that import from mdformat.renderer
  • d9aa005 Merge pull request #500 from hukkin/version-0.7.20
  • a4f971c Bump version: 0.7.19 → 0.7.20
  • fa91de5 maintain: add v0.7.20 changelog
  • 062ad6d add: --no-validate option to skip AST safety check (#496)
  • 52f3c06 tests: improve plugin option merge test
  • e3b4c33 maintain: give explicit sphinx conf to readthedocs
  • f568716 fix: regex in is_md_equal is too greedy
  • 3dd45d2 improve: cache textwrap.TextWrapper objects
  • Additional commits viewable in compare view

Updates mypy from 1.13.0 to 1.14.0

Changelog

Sourced from mypy's changelog.

Mypy Release Notes

Next release

...

Mypy 1.14

We’ve just uploaded mypy 1.14 to the Python Package Index (PyPI). Mypy is a static type checker for Python. This release includes new features and bug fixes. 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.

Change to Enum Membership Semantics

As per the updated typing specification for enums, enum members must be left unannotated.

class Pet(Enum):
    CAT = 1  # Member attribute
    DOG = 2  # Member attribute
# New error: Enum members must be left unannotated
WOLF: int = 3
species: str  # Considered a non-member attribute

In particular, the specification change can result in issues in type stubs (.pyi files), since historically it was common to leave the value absent:

# In a type stub (.pyi file)
class Pet(Enum):
# Change in semantics: previously considered members,
# now non-member attributes
CAT: int
DOG: int
# Mypy will now issue a warning if it detects this
# situation in type stubs:
# &gt; Detected enum &quot;Pet&quot; in a type stub with zero
# &gt; members. There is a chance this is due to a recent
# &gt; change in the semantics of enum membership. If so,
# &gt; use `member = value` to mark an enum member,

</tr></table>

... (truncated)

Commits

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

…ates

Bumps the development-dependencies group with 7 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [types-tqdm](https://github.com/python/typeshed) | `4.67.0.20241119` | `4.67.0.20241221` |
| [hypothesis](https://github.com/HypothesisWorks/hypothesis) | `6.122.3` | `6.123.2` |
| [ipython](https://github.com/ipython/ipython) | `8.30.0` | `8.31.0` |
| [jupyterlab](https://github.com/jupyterlab/jupyterlab) | `4.3.3` | `4.3.4` |
| [jupytext](https://github.com/mwouts/jupytext) | `1.16.4` | `1.16.6` |
| [mdformat](https://github.com/hukkin/mdformat) | `0.7.19` | `0.7.21` |
| [mypy](https://github.com/python/mypy) | `1.13.0` | `1.14.0` |



Updates `types-tqdm` from 4.67.0.20241119 to 4.67.0.20241221
- [Commits](https://github.com/python/typeshed/commits)

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

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

Updates `jupyterlab` from 4.3.3 to 4.3.4
- [Release notes](https://github.com/jupyterlab/jupyterlab/releases)
- [Changelog](https://github.com/jupyterlab/jupyterlab/blob/@jupyterlab/[email protected]/CHANGELOG.md)
- [Commits](https://github.com/jupyterlab/jupyterlab/compare/@jupyterlab/[email protected]...@jupyterlab/[email protected])

Updates `jupytext` from 1.16.4 to 1.16.6
- [Release notes](https://github.com/mwouts/jupytext/releases)
- [Changelog](https://github.com/mwouts/jupytext/blob/main/CHANGELOG.md)
- [Commits](mwouts/jupytext@v1.16.4...v1.16.6)

Updates `mdformat` from 0.7.19 to 0.7.21
- [Commits](hukkin/mdformat@0.7.19...0.7.21)

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

---
updated-dependencies:
- dependency-name: types-tqdm
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: hypothesis
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: ipython
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: jupyterlab
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: jupytext
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: mdformat
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: mypy
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Dec 29, 2024
@github-actions github-actions bot enabled auto-merge December 29, 2024 03:58
@github-actions github-actions bot merged commit 77f588e into develop Dec 29, 2024
13 checks passed
@dependabot dependabot bot deleted the dependabot/pip/development-dependencies-fa99549ee8 branch December 29, 2024 04:03
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