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

infra: bump the dev-dependencies group across 1 directory with 16 updates #633

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

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

Updates the requirements on botocore, awscli, boto3, amazon-braket-pennylane-plugin, jax, jaxlib, markupsafe, ml-dtypes, optax, pandas, pennylane, pennylane-lightning, qiskit-aer, scipy, scs and sympy to permit the latest version.
Updates botocore from 1.35.0 to 1.35.39

Commits
  • 35ed03b Merge branch 'release-1.35.39'
  • 4c97570 Bumping version to 1.35.39
  • 46b2c87 Update to latest models
  • 2352cb2 Merge branch 'release-1.35.38'
  • 003ebdb Merge branch 'release-1.35.38' into develop
  • 52cc070 Bumping version to 1.35.38
  • c2ccf58 Update to latest models
  • 1971a64 Merge customizations for SocialMessaging
  • 185b175 Merge branch 'release-1.35.37'
  • 8e2e8fd Merge branch 'release-1.35.37' into develop
  • Additional commits viewable in compare view

Updates awscli from 1.34.0 to 1.35.5

Commits
  • c4f7837 Merge branch 'release-1.35.5'
  • d24bef5 Bumping version to 1.35.5
  • dd68e89 Update changelog based on model updates
  • 831f781 Merge customizations for EMR
  • 1ed7fc4 Merge branch 'release-1.35.4'
  • 79004d4 Merge branch 'release-1.35.4' into develop
  • 21005e5 Bumping version to 1.35.4
  • 1c4097d Update changelog based on model updates
  • 1498d58 Merge branch 'release-1.35.3'
  • 2f6e290 Merge branch 'release-1.35.3' into develop
  • Additional commits viewable in compare view

Updates boto3 from 1.35.0 to 1.35.39

Commits
  • 9dd723f Merge branch 'release-1.35.39'
  • dff7abc Bumping version to 1.35.39
  • b29280c Add changelog entries from botocore
  • b03916d Merge branch 'release-1.35.38'
  • c92c039 Merge branch 'release-1.35.38' into develop
  • c2a060e Bumping version to 1.35.38
  • 158a84b Add changelog entries from botocore
  • 2d4aaf0 Merge branch 'release-1.35.37'
  • ffb3d1c Merge branch 'release-1.35.37' into develop
  • 3089cd9 Bumping version to 1.35.37
  • Additional commits viewable in compare view

Updates amazon-braket-pennylane-plugin from 1.28.0 to 1.30.1

Release notes

Sourced from amazon-braket-pennylane-plugin's releases.

v1.30.1

Bug Fixes and Other Changes

  • onboard onto ruff

v1.30.0

Features

  • Device-specific supported observables

v1.29.0

Features

  • Support SProd and CompositeOp for expval

Documentation Changes

  • Fix typo in qml.var usage
Changelog

Sourced from amazon-braket-pennylane-plugin's changelog.

v1.30.1 (2024-09-19)

Bug Fixes and Other Changes

  • onboard onto ruff

v1.30.0 (2024-09-11)

Features

  • Device-specific supported observables

v1.29.0 (2024-09-09)

Features

  • Support SProd and CompositeOp for expval

Documentation Changes

  • Fix typo in qml.var usage
Commits
  • a795b5f prepare release v1.30.1
  • 3f88ff3 fix: onboard onto ruff (#277)
  • 8ff880b update development version to v1.30.1.dev0
  • 3a16423 prepare release v1.30.0
  • 4bb65ce feat: Device-specific supported observables (#276)
  • 7038db2 update development version to v1.29.1.dev0
  • 2bccb78 prepare release v1.29.0
  • 7ee7bee infra: bump thehanimo/pr-title-checker from 1.4.1 to 1.4.2 (#271)
  • 715f589 doc: Fix typo in qml.var usage (#261)
  • df838cb feat: Support SProd and CompositeOp for expval (#275)
  • Additional commits viewable in compare view

Updates jax from 0.4.29 to 0.4.34

Release notes

Sourced from jax's releases.

JAX v0.4.34

  • New Functionality

    • This release includes wheels for Python 3.13. Free-threading mode is not yet supported.
    • jax.errors.JaxRuntimeError has been added as a public alias for the formerly private XlaRuntimeError type.
  • Breaking changes

    • jax_pmap_no_rank_reduction flag is set to True by default.
      • array[0] on a pmap result now introduces a reshape (use array[0:1] instead).
      • The per-shard shape (accessable via jax_array.addressable_shards or jax_array.addressable_data(0)) now has a leading (1, ...). Update code that directly accesses shards accordingly. The rank of the per-shard-shape now matches that of the global shape which is the same behavior as jit. This avoids costly reshapes when passing results from pmap into jit.
    • jax.experimental.host_callback has been deprecated since March 2024, with JAX version 0.4.26. Now we set the default value of the --jax_host_callback_legacy configuration value to True, which means that if your code uses jax.experimental.host_callback APIs, those API calls will be implemented in terms of the new jax.experimental.io_callback API. If this breaks your code, for a very limited time, you can set the --jax_host_callback_legacy to True. Soon we will remove that configuration option, so you should instead transition to using the new JAX callback APIs. See #20385 for a discussion.
  • Deprecations

    • In jax.numpy.trim_zeros, non-arraylike arguments or arraylike arguments with ndim != 1 are now deprecated, and in the future will result in an error.
    • Internal pretty-printing tools jax.core.pp_* have been removed, after being deprecated in JAX v0.4.30.
    • jax.lib.xla_client.Device is deprecated; use jax.Device instead.
    • jax.lib.xla_client.XlaRuntimeError has been deprecated. Use jax.errors.JaxRuntimeError instead.
  • Deletion:

    • jax.xla_computation is deleted. It has been 3 months since its deprecation in 0.4.30 JAX release. Please use the AOT APIs to get the same functionality as jax.xla_computation.
      • jax.xla_computation(fn)(*args, **kwargs) can be replaced with jax.jit(fn).lower(*args, **kwargs).compiler_ir('hlo').
      • You can also use .out_info property of jax.stages.Lowered to get the output information (like tree structure, shape and dtype).
      • For cross-backend lowering, you can replace jax.xla_computation(fn, backend='tpu')(*args, **kwargs) with jax.jit(fn).trace(*args, **kwargs).lower(lowering_platforms=('tpu',)).compiler_ir('hlo').
    • jax.ShapeDtypeStruct no longer accepts the named_shape argument. The argument was only used by xmap which was removed in 0.4.31.
    • jax.tree.map(f, None, non-None), which previously emitted a

... (truncated)

Changelog

Sourced from jax's changelog.

jax 0.4.34 (October 4, 2024)

  • New Functionality

    • This release includes wheels for Python 3.13. Free-threading mode is not yet supported.
    • jax.errors.JaxRuntimeError has been added as a public alias for the formerly private XlaRuntimeError type.
  • Breaking changes

    • jax_pmap_no_rank_reduction flag is set to True by default.
      • array[0] on a pmap result now introduces a reshape (use array[0:1] instead).
      • The per-shard shape (accessable via jax_array.addressable_shards or jax_array.addressable_data(0)) now has a leading (1, ...). Update code that directly accesses shards accordingly. The rank of the per-shard-shape now matches that of the global shape which is the same behavior as jit. This avoids costly reshapes when passing results from pmap into jit.
    • jax.experimental.host_callback has been deprecated since March 2024, with JAX version 0.4.26. Now we set the default value of the --jax_host_callback_legacy configuration value to True, which means that if your code uses jax.experimental.host_callback APIs, those API calls will be implemented in terms of the new jax.experimental.io_callback API. If this breaks your code, for a very limited time, you can set the --jax_host_callback_legacy to True. Soon we will remove that configuration option, so you should instead transition to using the new JAX callback APIs. See {jax-issue}[#20385](https://github.com/jax-ml/jax/issues/20385) for a discussion.
  • Deprecations

    • In {func}jax.numpy.trim_zeros, non-arraylike arguments or arraylike arguments with ndim != 1 are now deprecated, and in the future will result in an error.
    • Internal pretty-printing tools jax.core.pp_* have been removed, after being deprecated in JAX v0.4.30.
    • jax.lib.xla_client.Device is deprecated; use jax.Device instead.
    • jax.lib.xla_client.XlaRuntimeError has been deprecated. Use jax.errors.JaxRuntimeError instead.
  • Deletion:

    • jax.xla_computation is deleted. It's been 3 months since it's deprecation in 0.4.30 JAX release. Please use the AOT APIs to get the same functionality as jax.xla_computation.
      • jax.xla_computation(fn)(*args, **kwargs) can be replaced with jax.jit(fn).lower(*args, **kwargs).compiler_ir('hlo').
      • You can also use .out_info property of jax.stages.Lowered to get the output information (like tree structure, shape and dtype).
      • For cross-backend lowering, you can replace jax.xla_computation(fn, backend='tpu')(*args, **kwargs) with jax.jit(fn).trace(*args, **kwargs).lower(lowering_platforms=('tpu',)).compiler_ir('hlo').
    • {class}jax.ShapeDtypeStruct no longer accepts the named_shape argument. The argument was only used by xmap which was removed in 0.4.31.

... (truncated)

Commits
  • affba36 JAX 0.4.34 release
  • 59cb692 Update XLA dependency to use revision
  • 8fc8082 Merge pull request #24077 from jakevdp:badge-links
  • cfb7541 Merge pull request #23738 from keshavb96:disable_remat_pass
  • 78b65dd Merge pull request #24070 from jakevdp:issubdtype-doc
  • a8744e3 README: fix badge href links
  • 152a873 Update XLA dependency to use revision
  • c9f946e Only thread a discharged ref value through a cond when it changes in some branch
  • 816947b Merge pull request #24071 from hawkinsp:winci
  • e212c77 Merge pull request #23891 from ROCm:build-fixes-rollup
  • Additional commits viewable in compare view

Updates jaxlib from 0.4.29 to 0.4.34

Release notes

Sourced from jaxlib's releases.

Jaxlib release v0.4.32

WARNING: This release has been yanked from PyPI because of a data corruption bug on TPU if there are multiple TPU slices in the job

Jaxlib release v0.4.31

No release notes provided.

Jaxlib release v0.4.30

No release notes provided.

Changelog

Sourced from jaxlib's changelog.

jax 0.4.34 (October 4, 2024)

  • New Functionality

    • This release includes wheels for Python 3.13. Free-threading mode is not yet supported.
    • jax.errors.JaxRuntimeError has been added as a public alias for the formerly private XlaRuntimeError type.
  • Breaking changes

    • jax_pmap_no_rank_reduction flag is set to True by default.
      • array[0] on a pmap result now introduces a reshape (use array[0:1] instead).
      • The per-shard shape (accessable via jax_array.addressable_shards or jax_array.addressable_data(0)) now has a leading (1, ...). Update code that directly accesses shards accordingly. The rank of the per-shard-shape now matches that of the global shape which is the same behavior as jit. This avoids costly reshapes when passing results from pmap into jit.
    • jax.experimental.host_callback has been deprecated since March 2024, with JAX version 0.4.26. Now we set the default value of the --jax_host_callback_legacy configuration value to True, which means that if your code uses jax.experimental.host_callback APIs, those API calls will be implemented in terms of the new jax.experimental.io_callback API. If this breaks your code, for a very limited time, you can set the --jax_host_callback_legacy to True. Soon we will remove that configuration option, so you should instead transition to using the new JAX callback APIs. See {jax-issue}[#20385](https://github.com/jax-ml/jax/issues/20385) for a discussion.
  • Deprecations

    • In {func}jax.numpy.trim_zeros, non-arraylike arguments or arraylike arguments with ndim != 1 are now deprecated, and in the future will result in an error.
    • Internal pretty-printing tools jax.core.pp_* have been removed, after being deprecated in JAX v0.4.30.
    • jax.lib.xla_client.Device is deprecated; use jax.Device instead.
    • jax.lib.xla_client.XlaRuntimeError has been deprecated. Use jax.errors.JaxRuntimeError instead.
  • Deletion:

    • jax.xla_computation is deleted. It's been 3 months since it's deprecation in 0.4.30 JAX release. Please use the AOT APIs to get the same functionality as jax.xla_computation.
      • jax.xla_computation(fn)(*args, **kwargs) can be replaced with jax.jit(fn).lower(*args, **kwargs).compiler_ir('hlo').
      • You can also use .out_info property of jax.stages.Lowered to get the output information (like tree structure, shape and dtype).
      • For cross-backend lowering, you can replace jax.xla_computation(fn, backend='tpu')(*args, **kwargs) with jax.jit(fn).trace(*args, **kwargs).lower(lowering_platforms=('tpu',)).compiler_ir('hlo').
    • {class}jax.ShapeDtypeStruct no longer accepts the named_shape argument. The argument was only used by xmap which was removed in 0.4.31.

... (truncated)

Commits
  • affba36 JAX 0.4.34 release
  • 59cb692 Update XLA dependency to use revision
  • 8fc8082 Merge pull request #24077 from jakevdp:badge-links
  • cfb7541 Merge pull request #23738 from keshavb96:disable_remat_pass
  • 78b65dd Merge pull request #24070 from jakevdp:issubdtype-doc
  • a8744e3 README: fix badge href links
  • 152a873 Update XLA dependency to use revision
  • c9f946e Only thread a discharged ref value through a cond when it changes in some branch
  • 816947b Merge pull request #24071 from hawkinsp:winci
  • e212c77 Merge pull request #23891 from ROCm:build-fixes-rollup
  • Additional commits viewable in compare view

Updates markupsafe from 2.1.5 to 3.0.1

Release notes

Sourced from markupsafe's releases.

3.0.1

This is the MarkupSafe 3.0.1 fix release, which fixes bugs but does not otherwise change behavior and should not result in breaking changes.

PyPI: https://pypi.org/project/MarkupSafe/3.0.1/ Changes: https://markupsafe.palletsprojects.com/page/changes/#version-3-0-1 (pending a fix to the docs build) Milestone: https://github.com/pallets/markupsafe/milestone/13?closed=1

  • Address compiler warnings that became errors in GCC 14. #466
  • Fix compatibility with proxy objects. #467

3.0.0

This is the MarkupSafe 3.0.0 feature release. A feature release may include new features, remove previously deprecated code, add new deprecations, or introduce potentially breaking changes. The 3.0.x branch is now the supported fix branch, the 2.1.x branch will become a tag marking the end of support for that branch. We encourage everyone to upgrade, and to use a tool such as pip-tools to pin all dependencies and control upgrades. Test with warnings treated as errors to be able to adapt to deprecation warnings early.

PyPI: https://pypi.org/project/MarkupSafe/3.0.0/ Changes: https://markupsafe.palletsprojects.com/page/changes/#version-3-0-0 (pending a fix to the docs build) Milestone: https://github.com/pallets/markupsafe/milestone/10?closed=1

  • Support Python 3.13 and its experimental free-threaded build. #461
  • Drop support for Python 3.7 and 3.8.
  • Use modern packaging metadata with pyproject.toml instead of setup.cfg. #348
  • Change distutils imports to setuptools. #399
  • Use deferred evaluation of annotations. #400
  • Update signatures for Markup methods to match str signatures. Use positional-only arguments. #400
  • Some str methods on Markup no longer escape their argument: strip, lstrip, rstrip, removeprefix, removesuffix, partition, and rpartition; replace only escapes its new argument. These methods are conceptually linked to search methods such as in, find, and index, which already do not escape their argument. #401
  • The __version__ attribute is deprecated. Use feature detection, or importlib.metadata.version("markupsafe"), instead. #402
  • Speed up escaping plain strings by 40%. #434
  • Simplify speedups implementation. #437
Changelog

Sourced from markupsafe's changelog.

Version 3.0.1

Released 2024-10-08

  • Address compiler warnings that became errors in GCC 14. :issue:466
  • Fix compatibility with proxy objects. :issue:467

Version 3.0.0

Released 2024-10-07

  • Support Python 3.13 and its experimental free-threaded build. :pr:461
  • Drop support for Python 3.7 and 3.8.
  • Use modern packaging metadata with pyproject.toml instead of setup.cfg. :pr:348
  • Change distutils imports to setuptools. :pr:399
  • Use deferred evaluation of annotations. :pr:400
  • Update signatures for Markup methods to match str signatures. Use positional-only arguments. :pr:400
  • Some str methods on Markup no longer escape their argument: strip, lstrip, rstrip, removeprefix, removesuffix, partition, and rpartition; replace only escapes its new argument. These methods are conceptually linked to search methods such as in, find, and index, which already do not escape their argument. :issue:401
  • The __version__ attribute is deprecated. Use feature detection, or importlib.metadata.version("markupsafe"), instead. :pr:402
  • Speed up escaping plain strings by 40%. :pr:434
  • Simplify speedups implementation. :pr:437
Commits

Updates ml-dtypes from 0.4.0 to 0.5.0

Release notes

Sourced from ml-dtypes's releases.

v0.5.0 release

  • Added new 8-bit float types following IEEE 754 convention: ml_dtypes.float8_e4m3, ml_dtypes.float8_e3m4
  • Added the 8-bit floating point type ml_dtypes.float8_e8m0fnu, which is the OpenCompute MX scale format.
  • Added new 4-bit and 6-bit float types: ml_dtypes.float4_e2m1fn, ml_dtypes.float6_e2m3fn and ml_dtypes.float6_e3m2fn.
  • Fix outputs of float divmod and floor_divide when denominator is zero.

v0.4.1 release

  • Updates build requirements to use NumPy 2.0 release
Changelog

Sourced from ml-dtypes's changelog.

[0.5.0] - 2024-09-13

  • Added new 8-bit float types following IEEE 754 convention: ml_dtypes.float8_e4m3, ml_dtypes.float8_e3m4
  • Added the 8-bit floating point type ml_dtypes.float8_e8m0fnu, which is the OpenCompute MX scale format.
  • Added new 4-bit and 6-bit float types: ml_dtypes.float4_e2m1fn, ml_dtypes.float6_e2m3fn and ml_dtypes.float6_e3m2fn.
  • Fix outputs of float divmod and floor_divide when denominator is zero.

[0.4.1] - 2024-09-13

  • Updates build requirements to use NumPy 2.0 release
Commits
  • f802a63 Merge pull request #194 from jakevdp:v5-update
  • 6692e56 Bump version to 0.5.0 for release
  • 7fab9cd Merge pull request #191 from jakevdp:no-multithread
  • abe1d89 Temporarily disable free-threading build & multithread tests
  • b39b73c Merge pull request #187 from jakevdp:test-fix
  • 74daa1a tests: ignore one more error
  • 4893435 Merge pull request #186 from jakevdp:fix-tests
  • 517573a Tests: ignore several NaN warnings for new dtypes
  • d581b6f Merge pull request #166 from graphcore-research:add-e8m0-datatype
  • b6d3659 Add float8_e8m0_fnu (E8M0) OCP MX scale format
  • Additional commits viewable in compare view

Updates optax from 0.2.2 to 0.2.3

Release notes

Sourced from optax's releases.

Optax 0.2.3

What's Changed

... (truncated)

Commits
  • e90eecd Release v0.2.3
  • 8c46b75 Fix doctest normalize_by_update_norm
  • 5b55ccc Merge pull request #1000 from fabianp:SauravMaheshkar-saurav/scale_by_grad_norm
  • 648a967 Add schedule_free check for b1 != 0.
  • f72fbfc Add common schedule_free wrappers.
  • 2660a04 Merge branch 'saurav/scale_by_grad_norm' of https://github.com/SauravMaheshka...
  • 23b7703 LBFGS part 4: notebook illustrating how to use lbfgs with linesearch as a sol...
  • 10cf508 Add arxiv reference to schedule_free optimizer.
  • b849fc6 docs: update transformations API docs
  • 5c01f6f docs: update transformations
  • Additional commits viewable in compare view

Updates pandas from 2.2.2 to 2.2.3

Release notes

Sourced from pandas's releases.

Pandas 2.2.3

We are pleased to announce the release of pandas 2.2.3. This release includes some new features, bug fixes, and performance improvements. We recommend that all users upgrade to this version.

See the full whatsnew for a list of all the changes. Pandas 2.2.3 supports Python 3.9 and higher.

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

Updates pennylane from 0.35.1 to 0.38.0

Release notes

Sourced from pennylane's releases.

Release 0.38.0

  • A new function called qml.registers has been added that lets you seamlessly create registers of wires. [(#5957)](PennyLaneAI/pennylane#5957) [(#6102)](PennyLaneAI/pennylane#6102)

    Using registers, it is easier to build large algorithms and circuits by applying gates and operations to predefined collections of wires. With qml.registers, you can create registers of wires by providing a dictionary whose keys are register names and whose values are the number of wires in each register.

    >>> wire_reg = qml.registers({"alice": 4, "bob": 3})
    >>> wire_reg
    {'alice': Wires([0, 1, 2, 3]), 'bob': Wires([4, 5, 6])}

    The resulting data structure of qml.registers is a dictionary with the same register names as keys, but the values are qml.wires.Wires instances.

    Nesting registers within other registers can be done by providing a nested dictionary, where the ordering of wire labels is based on the order of appearance and nestedness.

    >>> wire_reg = qml.registers({"alice": {"alice1": 1, "alice2": 2}, "bob": {"bob1": 2, "bob2": 1}})
    >>> wire_reg
    {'alice1': Wires([0]), 'alice2': Wires([1, 2]), 'alice': Wires([0, 1, 2]), 'bob1': Wires([3, 4]), 'bob2': Wires([5]), 'bob': Wires([3, 4, 5])}

    Since the values of the dictionary are Wires instances, their use within quantum circuits is very similar to that of a list of integers.

    dev = qml.device("default.qubit")
    @​qml.qnode(dev)
    def circuit():
    for w in wire_reg["alice"]:
    qml.Hadamard(w)
    for w in wire_reg["bob1"]:
        qml.RX(0.1967, wires=w)
    qml.CNOT(wires=[wire_reg["alice1"][0], wire_reg["bob2"][0]])
    return [qml.expval(qml.Y(w)) for w in wire_reg["bob1"]]
    
    print(qml.draw(circuit)())

    0: ──H────────╭●─┤     
    1: ──H────────│──┤     
    2: ──H────────│──┤     
    3: ──RX(0.20)─│──┤  <Y>

... (truncated)

Commits

Updates pennylane-lightning from 0.35.1 to 0.38.0

Release notes

Sourced from pennylane-lightning's releases.

Release 0.38.0

New features since last release

Breaking changes

…ates

Updates the requirements on [botocore](https://github.com/boto/botocore), [awscli](https://github.com/aws/aws-cli), [boto3](https://github.com/boto/boto3), [amazon-braket-pennylane-plugin](https://github.com/amazon-braket/amazon-braket-pennylane-plugin-python), [jax](https://github.com/jax-ml/jax), [jaxlib](https://github.com/jax-ml/jax), [markupsafe](https://github.com/pallets/markupsafe), [ml-dtypes](https://github.com/jax-ml/ml_dtypes), [optax](https://github.com/google-deepmind/optax), [pandas](https://github.com/pandas-dev/pandas), [pennylane](https://github.com/PennyLaneAI/pennylane), [pennylane-lightning](https://github.com/PennyLaneAI/pennylane-lightning), [qiskit-aer](https://github.com/Qiskit/qiskit-aer), [scipy](https://github.com/scipy/scipy), [scs](https://github.com/cvxgrp/scs) and [sympy](https://github.com/sympy/sympy) to permit the latest version.

Updates `botocore` from 1.35.0 to 1.35.39
- [Commits](boto/botocore@1.35.0...1.35.39)

Updates `awscli` from 1.34.0 to 1.35.5
- [Release notes](https://github.com/aws/aws-cli/releases)
- [Commits](aws/aws-cli@1.34.0...1.35.5)

Updates `boto3` from 1.35.0 to 1.35.39
- [Release notes](https://github.com/boto/boto3/releases)
- [Commits](boto/boto3@1.35.0...1.35.39)

Updates `amazon-braket-pennylane-plugin` from 1.28.0 to 1.30.1
- [Release notes](https://github.com/amazon-braket/amazon-braket-pennylane-plugin-python/releases)
- [Changelog](https://github.com/amazon-braket/amazon-braket-pennylane-plugin-python/blob/main/CHANGELOG.md)
- [Commits](amazon-braket/amazon-braket-pennylane-plugin-python@v1.28.0...v1.30.1)

Updates `jax` from 0.4.29 to 0.4.34
- [Release notes](https://github.com/jax-ml/jax/releases)
- [Changelog](https://github.com/jax-ml/jax/blob/main/CHANGELOG.md)
- [Commits](jax-ml/jax@jax-v0.4.29...jax-v0.4.34)

Updates `jaxlib` from 0.4.29 to 0.4.34
- [Release notes](https://github.com/jax-ml/jax/releases)
- [Changelog](https://github.com/jax-ml/jax/blob/main/CHANGELOG.md)
- [Commits](jax-ml/jax@jaxlib-v0.4.29...jax-v0.4.34)

Updates `markupsafe` from 2.1.5 to 3.0.1
- [Release notes](https://github.com/pallets/markupsafe/releases)
- [Changelog](https://github.com/pallets/markupsafe/blob/main/CHANGES.rst)
- [Commits](pallets/markupsafe@2.1.5...3.0.1)

Updates `ml-dtypes` from 0.4.0 to 0.5.0
- [Release notes](https://github.com/jax-ml/ml_dtypes/releases)
- [Changelog](https://github.com/jax-ml/ml_dtypes/blob/main/CHANGELOG.md)
- [Commits](jax-ml/ml_dtypes@v0.4.0...v0.5.0)

Updates `optax` from 0.2.2 to 0.2.3
- [Release notes](https://github.com/google-deepmind/optax/releases)
- [Commits](google-deepmind/optax@v0.2.2...v0.2.3)

Updates `pandas` from 2.2.2 to 2.2.3
- [Release notes](https://github.com/pandas-dev/pandas/releases)
- [Commits](pandas-dev/pandas@v2.2.2...v2.2.3)

Updates `pennylane` from 0.35.1 to 0.38.0
- [Release notes](https://github.com/PennyLaneAI/pennylane/releases)
- [Commits](PennyLaneAI/pennylane@v0.35.1...v0.38.0)

Updates `pennylane-lightning` from 0.35.1 to 0.38.0
- [Release notes](https://github.com/PennyLaneAI/pennylane-lightning/releases)
- [Commits](PennyLaneAI/pennylane-lightning@v0.35.1...v0.38.0)

Updates `qiskit-aer` from 0.14.2 to 0.15.1
- [Release notes](https://github.com/Qiskit/qiskit-aer/releases)
- [Commits](Qiskit/qiskit-aer@0.14.2...0.15.1)

Updates `scipy` from 1.13.1 to 1.14.1
- [Release notes](https://github.com/scipy/scipy/releases)
- [Commits](scipy/scipy@v1.13.1...v1.14.1)

Updates `scs` to 3.2.7
- [Release notes](https://github.com/cvxgrp/scs/releases)
- [Commits](cvxgrp/scs@1.0...3.2.7)

Updates `sympy` to 1.13.3
- [Release notes](https://github.com/sympy/sympy/releases)
- [Commits](sympy/sympy@sympy-0.5.0...sympy-1.13.3)

---
updated-dependencies:
- dependency-name: botocore
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: awscli
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: boto3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: amazon-braket-pennylane-plugin
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: jax
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: jaxlib
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: markupsafe
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: ml-dtypes
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: optax
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: pandas
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: pennylane
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: pennylane-lightning
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: qiskit-aer
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: scipy
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: scs
  dependency-type: direct:production
  dependency-group: dev-dependencies
- dependency-name: sympy
  dependency-type: direct:production
  dependency-group: dev-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested a review from a team as a code owner October 14, 2024 19:01
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Oct 14, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Oct 21, 2024

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Oct 21, 2024
@dependabot dependabot bot deleted the dependabot/pip/dev-dependencies-6860013f03 branch October 21, 2024 18:30
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