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

chore(deps): bump the all-dependencies group with 8 updates #662

Merged
merged 2 commits into from Dec 1, 2023

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 1, 2023

Bumps the all-dependencies group with 8 updates:

Package From To
jsonschema 4.19.2 4.20.0
pandas 2.1.0 2.1.3
black 23.10.1 23.11.0
mkdocs-material 9.4.7 9.4.14
mkdocs-include-markdown-plugin 6.0.3 6.0.4
mypy 1.6.1 1.7.1
types-jsonschema 4.19.0.4 4.20.0.0
types-openpyxl 3.1.0.24 3.1.0.29

Updates jsonschema from 4.19.2 to 4.20.0

Release notes

Sourced from jsonschema's releases.

v4.20.0

  • Properly consider items (and properties) to be evaluated by unevaluatedItems (resp. unevaluatedProperties) when behind a $dynamicRef as specified by the 2020 and 2019 specifications.
  • jsonschema.exceptions.ErrorTree.__setitem__ is now deprecated. More broadly, in general users of jsonschema should never be mutating objects owned by the library.

Full Changelog: python-jsonschema/jsonschema@v4.19.2...v4.20.0

Changelog

Sourced from jsonschema's changelog.

v4.20.0

  • Properly consider items (and properties) to be evaluated by unevaluatedItems (resp. unevaluatedProperties) when behind a $dynamicRef as specified by the 2020 and 2019 specifications.
  • jsonschema.exceptions.ErrorTree.__setitem__ is now deprecated. More broadly, in general users of jsonschema should never be mutating objects owned by the library.
Commits
  • 5ff5999 Consider properties evaluated when they're behind dynamic refs.
  • 13bc188 Squashed 'json/' changes from 95fe6ca2..d38ddd54
  • 2ed7ad6 Merge pull request #1191 from python-jsonschema/pre-commit-ci-update-config
  • 6db1bef [pre-commit.ci] pre-commit autoupdate
  • c563034 Merge pull request #1189 from python-jsonschema/pre-commit-ci-update-config
  • 420a96c [pre-commit.ci] pre-commit autoupdate
  • 5b06df6 Apparently this setting is now autodetected.
  • 11e2302 Minor typing tweaks in the exceptions module.
  • 65877a1 Merge pull request #1185 from python-jsonschema/pre-commit-ci-update-config
  • a087ae6 [pre-commit.ci] pre-commit autoupdate
  • Additional commits viewable in compare view

Updates pandas from 2.1.0 to 2.1.3

Release notes

Sourced from pandas's releases.

Pandas 2.1.3

This is a patch release in the 2.1.x series and includes some regression and bug fixes, and a security fix. We recommend that all users upgrade to this version.

See the full whatsnew for a list of all the changes.

The release will be available on the defaults and conda-forge channels:

conda install pandas

Or via PyPI:

python3 -m pip install --upgrade pandas

Please report any issues with the release on the pandas issue tracker.

Thanks to all the contributors who made this release possible.

Pandas 2.1.2

This is a patch release in the 2.1.x series and includes some regression and bug fixes. We recommend that all users upgrade to this version.

See the full whatsnew for a list of all the changes.

The release will be available on the defaults and conda-forge channels:

conda install pandas

Or via PyPI:

python3 -m pip install --upgrade pandas

Please report any issues with the release on the pandas issue tracker.

Thanks to all the contributors who made this release possible.

Pandas 2.1.1

This is a patch release in the 2.1.x series and includes some regression and bug fixes. We recommend that all users upgrade to this version.

See the full whatsnew for a list of all the changes.

The release will be available on the defaults and conda-forge channels:

conda install pandas

Or via PyPI:

python3 -m pip install --upgrade pandas

Please report any issues with the release on the pandas issue tracker.

Thanks to all the contributors who made this release possible.

Commits
  • 2a953cf RLS: 2.1.3
  • d9665ca Backport PR #55911 on branch 2.1.x (DOC: convert outdated example of NumPy's ...
  • 92ce245 Backport PR #55907 on branch 2.1.x (DOC: Add release date for 2.1.3) (#55913)
  • 1691a51 Backport PR #55894 on 2.1.x: Parquet/Feather IO: disable PyExtensionType auto...
  • 4158666 Backport PR #55764 on branch 2.1.x (REGR: fix return class in _constructor_fr...
  • de8af3c Backport PR #55427 on branch 2.1.x (DOC: Remove outdated docs about NumPy's b...
  • 569f904 Backport PR #55227 on branch 2.1.x (BUG: Interchange object data buffer has t...
  • c9854d9 TST: Make read_csv tests pyarrow 13 compatable on 2.1.x (#55855)
  • 7702f41 Backport PR #55853: DEPS: Use ipython run_cell instead of run_code; remove py...
  • 0bf70c7 Backport PR #55761 on branch 2.1.x (BUG: DatetimeIndex.diff raising TypeError...
  • Additional commits viewable in compare view

Updates black from 23.10.1 to 23.11.0

Release notes

Sourced from black's releases.

23.11.0

Highlights

  • Support formatting ranges of lines with the new --line-ranges command-line option (#4020)

Stable style

  • Fix crash on formatting bytes strings that look like docstrings (#4003)
  • Fix crash when whitespace followed a backslash before newline in a docstring (#4008)
  • Fix standalone comments inside complex blocks crashing Black (#4016)
  • Fix crash on formatting code like await (a ** b) (#3994)
  • No longer treat leading f-strings as docstrings. This matches Python's behaviour and fixes a crash (#4019)

Preview style

  • Multiline dicts and lists that are the sole argument to a function are now indented less (#3964)
  • Multiline unpacked dicts and lists as the sole argument to a function are now also indented less (#3992)
  • In f-string debug expressions, quote types that are visible in the final string are now preserved (#4005)
  • Fix a bug where long case blocks were not split into multiple lines. Also enable general trailing comma rules on case blocks (#4024)
  • Keep requiring two empty lines between module-level docstring and first function or class definition (#4028)
  • Add support for single-line format skip with other comments on the same line (#3959)

Configuration

  • Consistently apply force exclusion logic before resolving symlinks (#4015)
  • Fix a bug in the matching of absolute path names in --include (#3976)

Performance

  • Fix mypyc builds on arm64 on macOS (#4017)

Integrations

  • Black's pre-commit integration will now run only on git hooks appropriate for a code formatter (#3940)
Changelog

Sourced from black's changelog.

23.11.0

Highlights

  • Support formatting ranges of lines with the new --line-ranges command-line option (#4020)

Stable style

  • Fix crash on formatting bytes strings that look like docstrings (#4003)
  • Fix crash when whitespace followed a backslash before newline in a docstring (#4008)
  • Fix standalone comments inside complex blocks crashing Black (#4016)
  • Fix crash on formatting code like await (a ** b) (#3994)
  • No longer treat leading f-strings as docstrings. This matches Python's behaviour and fixes a crash (#4019)

Preview style

  • Multiline dicts and lists that are the sole argument to a function are now indented less (#3964)
  • Multiline unpacked dicts and lists as the sole argument to a function are now also indented less (#3992)
  • In f-string debug expressions, quote types that are visible in the final string are now preserved (#4005)
  • Fix a bug where long case blocks were not split into multiple lines. Also enable general trailing comma rules on case blocks (#4024)
  • Keep requiring two empty lines between module-level docstring and first function or class definition (#4028)
  • Add support for single-line format skip with other comments on the same line (#3959)

Configuration

  • Consistently apply force exclusion logic before resolving symlinks (#4015)
  • Fix a bug in the matching of absolute path names in --include (#3976)

Performance

  • Fix mypyc builds on arm64 on macOS (#4017)

Integrations

  • Black's pre-commit integration will now run only on git hooks appropriate for a code formatter (#3940)
Commits
  • 2a1c67e Prepare release 23.11.0 (#4032)
  • 72e7a2e Remove redundant condition from has_magic_trailing_comma (#4023)
  • 1a7d9c2 Preserve visible quote types for f-string debug expressions (#4005)
  • f4c7be5 docs: fix minor typo (#4030)
  • 2e4fac9 Apply force exclude logic before symlink resolution (#4015)
  • 66008fd [563] Fix standalone comments inside complex blocks crashing Black (#4016)
  • 50ed622 Fix long case blocks not split into multiple lines (#4024)
  • 46be1f8 Support formatting specified lines (#4020)
  • ecbd9e8 Fix crash with f-string docstrings (#4019)
  • e808e61 Preview: Keep requiring two empty lines between module-level docstring and fi...
  • Additional commits viewable in compare view

Updates mkdocs-material from 9.4.7 to 9.4.14

Release notes

Sourced from mkdocs-material's releases.

mkdocs-material-9.4.14

  • Added support for linking authors in blog posts

mkdocs-material-9.4.13

  • Fixed #6365: Blog plugin pagination links to previous pages broken
  • Fixed #5758: Updated Mermaid.js to version 10.6.1 (latest)

mkdocs-material-9.4.12

  • Improved blog plugin to generate Unicode-aware slugs by default
  • Fixed non-deterministic order of categories in blog plugin

mkdocs-material-9.4.11

  • Fixed #6364: Search plugin crashing when enabling theme while serving
  • Fixed blog plugin crashing when disabling pagination

mkdocs-material-9.4.10

  • Fixed #6356: Version selector can't be disabled via mike's configuration
  • Fixed #6281: Navigation not rendering due to Safari bug (9.4.2 regression)
  • Fixed #6261: Navigation expansion animates on first load (9.4.2 regression)

mkdocs-material-9.4.9

  • Fixed #6344: Long entries cutoff in table of contents
  • Fixed #6336: Custom template for glob archive not working with pagination
  • Fixed #6328: Blog plugin crashes for locales with dashes, e.g. pt-BR
  • Fixed #6327: Copy-to-clipboard button doesn't trim trailing line feed
  • Fixed #6302: Version strings not matched when using mike, only aliases
  • Fixed instant navigation progress indicator for gzipped content in Chrome
  • Fixed rendering bug on details marker rotation in Firefox

mkdocs-material-9.4.8

  • Fixed invalid local address replacement when using instant loading
  • Fixed #6275: Crash after navigation caused 404 when using instant loading
Changelog

Sourced from mkdocs-material's changelog.

mkdocs-material-9.4.14+insiders-4.46.0 (2023-11-26)

  • Added support for author profiles in blog plugin
  • Fixed custom index pages yielding two navigation items (4.45.0 regression)

mkdocs-material-9.4.14 (2023-11-26)

  • Added support for linking authors in blog posts

mkdocs-material-9.4.13 (2023-11-26)

  • Fixed #6365: Blog plugin pagination links to previous pages broken
  • Fixed #5758: Updated Mermaid.js to version 10.6.1 (latest)

mkdocs-material-9.4.12+insiders-4.45.0 (2023-11-24)

  • Added support for sorting blog categories by post count or custom function
  • Improved tags plugin to generate Unicode-aware slugs by default
  • Fixed non-deterministic order of multiple authors in blog plugin

mkdocs-material-9.4.12 (2023-11-24)

  • Improved blog plugin to generate Unicode-aware slugs by default
  • Fixed non-deterministic order of categories in blog plugin

mkdocs-material-9.4.11+insiders-4.44.0 (2023-11-23)

  • Added pagination settings for archive pages in blog plugin
  • Added pagination settings for category pages in blog plugin

mkdocs-material-9.4.11 (2023-11-23)

  • Fixed #6364: Search plugin crashing when enabling theme while serving
  • Fixed blog plugin crashing when disabling pagination

mkdocs-material-9.4.10+insiders-4.43.1 (2023-11-19)

  • Added third-party theme support in projects plugin, improving editing
  • Fixed #6360: Projects plugin crashes when theme is not Material for MkDocs
  • Fixed #6306: Projects plugin not reloading nested project configuration

mkdocs-material-9.4.10 (2023-11-19)

  • Fixed #6356: Version selector can't be disabled via mike's configuration
  • Fixed #6281: Navigation not rendering due to Safari bug (9.4.2 regression)
  • Fixed #6261: Navigation expansion animates on first load (9.4.2 regression)

mkdocs-material-9.4.9 (2023-11-17)

  • Fixed #6344: Long entries cutoff in table of contents

... (truncated)

Commits

Updates mkdocs-include-markdown-plugin from 6.0.3 to 6.0.4

Release notes

Sourced from mkdocs-include-markdown-plugin's releases.

v6.0.4

Bug fixes

  • Fixed logging variables not included formatting messages (regression from v6.0.2).
Commits

Updates mypy from 1.6.1 to 1.7.1

Changelog

Sourced from mypy's changelog.

Mypy Release Notes

Next release

Stubgen will now include __all__ in its output if it is in the input file (PR 16356).

Mypy 1.7

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

Using TypedDict for **kwargs Typing

Mypy now has support for using Unpack[...] with a TypedDict type to annotate **kwargs arguments enabled by default. Example:

# Or 'from typing_extensions import ...'
from typing import TypedDict, Unpack
class Person(TypedDict):
name: str
age: int
def foo(**kwargs: Unpack[Person]) -> None:
...
foo(name="x", age=1)  # Ok
foo(name=1)  # Error

The definition of foo above is equivalent to the one below, with keyword-only arguments name and age:

def foo(*, name: str, age: int) -> None:
    ...

Refer to PEP 692 for more information. Note that unlike in the current version of the PEP, mypy always treats signatures with Unpack[SomeTypedDict] as equivalent to their expanded forms with explicit keyword arguments, and there aren't special type checking rules for TypedDict arguments.

This was contributed by Ivan Levkivskyi back in 2022 (PR 13471).

TypeVarTuple Support Enabled (Experimental)

Mypy now has support for variadic generics (TypeVarTuple) enabled by default, as an experimental feature. Refer to PEP 646 for the details.

TypeVarTuple was implemented by Jared Hance and Ivan Levkivskyi over several mypy releases, with help from Jukka Lehtosalo.

... (truncated)

Commits

Updates types-jsonschema from 4.19.0.4 to 4.20.0.0

Commits

Updates types-openpyxl from 3.1.0.24 to 3.1.0.29

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

Bumps the all-dependencies group with 8 updates:

| Package | From | To |
| --- | --- | --- |
| [jsonschema](https://github.com/python-jsonschema/jsonschema) | `4.19.2` | `4.20.0` |
| [pandas](https://github.com/pandas-dev/pandas) | `2.1.0` | `2.1.3` |
| [black](https://github.com/psf/black) | `23.10.1` | `23.11.0` |
| [mkdocs-material](https://github.com/squidfunk/mkdocs-material) | `9.4.7` | `9.4.14` |
| [mkdocs-include-markdown-plugin](https://github.com/mondeja/mkdocs-include-markdown-plugin) | `6.0.3` | `6.0.4` |
| [mypy](https://github.com/python/mypy) | `1.6.1` | `1.7.1` |
| [types-jsonschema](https://github.com/python/typeshed) | `4.19.0.4` | `4.20.0.0` |
| [types-openpyxl](https://github.com/python/typeshed) | `3.1.0.24` | `3.1.0.29` |


Updates `jsonschema` from 4.19.2 to 4.20.0
- [Release notes](https://github.com/python-jsonschema/jsonschema/releases)
- [Changelog](https://github.com/python-jsonschema/jsonschema/blob/main/CHANGELOG.rst)
- [Commits](python-jsonschema/jsonschema@v4.19.2...v4.20.0)

Updates `pandas` from 2.1.0 to 2.1.3
- [Release notes](https://github.com/pandas-dev/pandas/releases)
- [Commits](pandas-dev/pandas@v2.1.0...v2.1.3)

Updates `black` from 23.10.1 to 23.11.0
- [Release notes](https://github.com/psf/black/releases)
- [Changelog](https://github.com/psf/black/blob/main/CHANGES.md)
- [Commits](psf/black@23.10.1...23.11.0)

Updates `mkdocs-material` from 9.4.7 to 9.4.14
- [Release notes](https://github.com/squidfunk/mkdocs-material/releases)
- [Changelog](https://github.com/squidfunk/mkdocs-material/blob/master/CHANGELOG)
- [Commits](squidfunk/mkdocs-material@9.4.7...9.4.14)

Updates `mkdocs-include-markdown-plugin` from 6.0.3 to 6.0.4
- [Release notes](https://github.com/mondeja/mkdocs-include-markdown-plugin/releases)
- [Commits](mondeja/mkdocs-include-markdown-plugin@v6.0.3...v6.0.4)

Updates `mypy` from 1.6.1 to 1.7.1
- [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md)
- [Commits](python/mypy@v1.6.1...v1.7.1)

Updates `types-jsonschema` from 4.19.0.4 to 4.20.0.0
- [Commits](https://github.com/python/typeshed/commits)

Updates `types-openpyxl` from 3.1.0.24 to 3.1.0.29
- [Commits](https://github.com/python/typeshed/commits)

---
updated-dependencies:
- dependency-name: jsonschema
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: pandas
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: black
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: mkdocs-material
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: mkdocs-include-markdown-plugin
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: mypy
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: types-jsonschema
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: types-openpyxl
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Dec 1, 2023
@jnussbaum jnussbaum enabled auto-merge (squash) December 1, 2023 17:07
@jnussbaum jnussbaum merged commit 6e307c2 into main Dec 1, 2023
9 checks passed
@jnussbaum jnussbaum deleted the dependabot/pip/all-dependencies-8bee7f7da0 branch December 1, 2023 17:10
@daschbot daschbot mentioned this pull request Dec 1, 2023
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant