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 15 updates #665

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 13, 2025

Updates the requirements on botocore, awscli, boto3, amazon-braket-pennylane-plugin, jax, jaxlib, matplotlib, mistune, ml-dtypes, pennylane, pennylane-lightning, qiskit-aer, scipy, scs and sympy to permit the latest version.
Updates botocore from 1.35.76 to 1.35.97

Commits

Updates awscli from 1.36.17 to 1.36.38

Commits
  • 629f33b Merge branch 'release-1.36.38'
  • 8ca2e5a Bumping version to 1.36.38
  • bfda5d1 Update changelog based on model updates
  • f836ad2 Merge pull request #9178 from elysahall/awsdocs-12-23-24-p2
  • 3006a70 Merge pull request #9180 from elysahall/awsdocs-12-30-24-p2
  • 70de5b4 Merge branch 'release-1.36.37'
  • 2bf885f Merge branch 'release-1.36.37' into develop
  • 25b28c6 Bumping version to 1.36.37
  • ba14db2 Update changelog based on model updates
  • f9860cd Merge branch 'release-1.36.36'
  • Additional commits viewable in compare view

Updates boto3 from 1.35.76 to 1.35.97

Commits
  • 4673c59 Merge branch 'release-1.35.97'
  • 7b9ebbb Bumping version to 1.35.97
  • e28898c Add changelog entries from botocore
  • 72c953c Merge branch 'release-1.35.96'
  • 28fc5bb Merge branch 'release-1.35.96' into develop
  • 15f3198 Bumping version to 1.35.96
  • 84ce3c0 Add changelog entries from botocore
  • 72e84a2 Merge branch 'release-1.35.95'
  • 0855227 Merge branch 'release-1.35.95' into develop
  • b9361b6 Bumping version to 1.35.95
  • Additional commits viewable in compare view

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

Release notes

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

v1.31.0

Deprecations and Removals

  • remove legacy opmath

v1.30.2

Bug Fixes and Other Changes

  • Remove deprecated import path for QubitDevice

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.31.0 (2024-12-03)

Deprecations and Removals

  • remove legacy opmath

v1.30.2 (2024-11-18)

Bug Fixes and Other Changes

  • Remove deprecated import path for QubitDevice

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
  • f0f963a prepare release v1.31.0
  • 1856182 depr: remove legacy opmath (#283)
  • 7578318 infra: bump codecov/codecov-action from 4 to 5 (#282)
  • bc901f9 infra: bump thehanimo/pr-title-checker from 1.4.2 to 1.4.3 (#284)
  • fd67a4c update development version to v1.30.3.dev0
  • 807d158 prepare release v1.30.2
  • 278b2f6 fix: Remove deprecated import path for QubitDevice (#281)
  • 4105263 infra: constrain autoray (#278)
  • 4e23fca update development version to v1.30.2.dev0
  • a795b5f prepare release v1.30.1
  • Additional commits viewable in compare view

Updates jax from 0.4.29 to 0.4.38

Release notes

Sourced from jax's releases.

JAX v0.4.38

  • Changes:

    • jax.tree.flatten_with_path and jax.tree.map_with_path are added as shortcuts of the corresponding tree_util functions.
  • Deprecations

    • a number of APIs in the internal jax.core namespace have been deprecated. Most were no-ops, were little-used, or can be replaced by APIs of the same name in jax.extend.core; see the documentation for {mod}jax.extend for information on the compatibility guarantees of these semi-public extensions.
    • Several previously-deprecated APIs have been removed, including:
      • from jax.core: check_eqn, check_type, check_valid_jaxtype, and non_negative_dim.
      • from jax.lib.xla_bridge: xla_client and default_backend.
      • from jax.lib.xla_client: _xla and bfloat16.
      • from jax.numpy: round_.
  • New Features

    • jax.export.export can be used for device-polymorphic export with shardings constructed with {func}jax.sharding.AbstractMesh. See the jax.export documentation.
    • Added jax.lax.split. This is a primitive version of jax.numpy.split, added because it yields a more compact transpose during automatic differentiation.

JAX v0.4.37

This is a patch release of jax 0.4.36. Only "jax" was released at this version.

  • Bug fixes
    • Fixed a bug where jit would error if an argument was named f (#25329).
    • Fix a bug that will throw index out of range error in jax.lax.while_loop if the user registers pytree node class with different aux data for the flatten and flatten_with_path.
    • Pinned a new libtpu release (0.0.6) that fixes a compiler bug on TPU v6e.

JAX v0.4.36

  • Breaking Changes
    • This release lands "stackless", an internal change to JAX's tracing machinery. We made trace dispatch purely a function of context rather than a function of both context and data. This let us delete a lot of machinery for managing data-dependent tracing: levels, sublevels, post_process_call, new_base_main, custom_bind, and so on. The change should only affect users that use JAX internals.

      If you do use JAX internals then you may need to update your code (see jax-ml/jax@c36e1f7 for clues about how to do this). There might also be version skew issues with JAX libraries that do this. If you find this change breaks your non-JAX-internals-using code then try the

... (truncated)

Changelog

Sourced from jax's changelog.

jax 0.4.38 (Dec 17, 2024)

  • Changes:

    • jax.tree.flatten_with_path and jax.tree.map_with_path are added as shortcuts of the corresponding tree_util functions.
  • Deprecations

    • a number of APIs in the internal jax.core namespace have been deprecated. Most were no-ops, were little-used, or can be replaced by APIs of the same name in {mod}jax.extend.core; see the documentation for {mod}jax.extend for information on the compatibility guarantees of these semi-public extensions.
    • Several previously-deprecated APIs have been removed, including:
      • from {mod}jax.core: check_eqn, check_type, check_valid_jaxtype, and non_negative_dim.
      • from {mod}jax.lib.xla_bridge: xla_client and default_backend.
      • from {mod}jax.lib.xla_client: _xla and bfloat16.
      • from {mod}jax.numpy: round_.
  • New Features

    • {func}jax.export.export can be used for device-polymorphic export with shardings constructed with {func}jax.sharding.AbstractMesh. See the jax.export documentation.
    • Added {func}jax.lax.split. This is a primitive version of {func}jax.numpy.split, added because it yields a more compact transpose during automatic differentiation.

jax 0.4.37 (Dec 9, 2024)

This is a patch release of jax 0.4.36. Only "jax" was released at this version.

  • Bug fixes
    • Fixed a bug where jit would error if an argument was named f (#25329).
    • Fix a bug that will throw index out of range error in {func}jax.lax.while_loop if the user register pytree node class with different aux data for the flatten and flatten_with_path.
    • Pinned a new libtpu release (0.0.6) that fixes a compiler bug on TPU v6e.

jax 0.4.36 (Dec 5, 2024)

  • Breaking Changes
    • This release lands "stackless", an internal change to JAX's tracing machinery. We made trace dispatch purely a function of context rather than a function of both context and data. This let us delete a lot of machinery for managing data-dependent tracing: levels, sublevels, post_process_call, new_base_main, custom_bind, and so on. The change should only affect users that use JAX internals.

      If you do use JAX internals then you may need to update your code (see jax-ml/jax@c36e1f7

... (truncated)

Commits
  • c4e3f5a Release v0.4.38
  • 0fa5419 Merge pull request #25456 from jakevdp:xla-abstractify
  • 7fe2579 Update XLA dependency to use revision
  • 7bbba40 Merge pull request #25473 from adamjstewart:build/no-git
  • 7de9eb2 Reverts 525b646c0ebd5205f4fa0639c94adb2de47e1cf0
  • 4911a39 [Mosaic TPU] Add support for the interleaved pack format to tpu.unpack_subele...
  • 36b12d5 [Mosaic GPU] Add end-to-end lowering example for a pointwise kernel using the...
  • 2c722d9 Cleanup: toward merging core.concrete_aval & xla.abstractify
  • 473e2bf Put abstract_mesh on every eqn so that we can preserve it during eval_jaxpr...
  • e1f037b Reduce the max_examples for splash attention tests
  • Additional commits viewable in compare view

Updates jaxlib from 0.4.29 to 0.4.38

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.38 (Dec 17, 2024)

  • Changes:

    • jax.tree.flatten_with_path and jax.tree.map_with_path are added as shortcuts of the corresponding tree_util functions.
  • Deprecations

    • a number of APIs in the internal jax.core namespace have been deprecated. Most were no-ops, were little-used, or can be replaced by APIs of the same name in {mod}jax.extend.core; see the documentation for {mod}jax.extend for information on the compatibility guarantees of these semi-public extensions.
    • Several previously-deprecated APIs have been removed, including:
      • from {mod}jax.core: check_eqn, check_type, check_valid_jaxtype, and non_negative_dim.
      • from {mod}jax.lib.xla_bridge: xla_client and default_backend.
      • from {mod}jax.lib.xla_client: _xla and bfloat16.
      • from {mod}jax.numpy: round_.
  • New Features

    • {func}jax.export.export can be used for device-polymorphic export with shardings constructed with {func}jax.sharding.AbstractMesh. See the jax.export documentation.
    • Added {func}jax.lax.split. This is a primitive version of {func}jax.numpy.split, added because it yields a more compact transpose during automatic differentiation.

jax 0.4.37 (Dec 9, 2024)

This is a patch release of jax 0.4.36. Only "jax" was released at this version.

  • Bug fixes
    • Fixed a bug where jit would error if an argument was named f (#25329).
    • Fix a bug that will throw index out of range error in {func}jax.lax.while_loop if the user register pytree node class with different aux data for the flatten and flatten_with_path.
    • Pinned a new libtpu release (0.0.6) that fixes a compiler bug on TPU v6e.

jax 0.4.36 (Dec 5, 2024)

  • Breaking Changes
    • This release lands "stackless", an internal change to JAX's tracing machinery. We made trace dispatch purely a function of context rather than a function of both context and data. This let us delete a lot of machinery for managing data-dependent tracing: levels, sublevels, post_process_call, new_base_main, custom_bind, and so on. The change should only affect users that use JAX internals.

      If you do use JAX internals then you may need to update your code (see jax-ml/jax@c36e1f7

... (truncated)

Commits
  • c4e3f5a Release v0.4.38
  • 0fa5419 Merge pull request #25456 from jakevdp:xla-abstractify
  • 7fe2579 Update XLA dependency to use revision
  • 7bbba40 Merge pull request #25473 from adamjstewart:build/no-git
  • 7de9eb2 Reverts 525b646c0ebd5205f4fa0639c94adb2de47e1cf0
  • 4911a39 [Mosaic TPU] Add support for the interleaved pack format to tpu.unpack_subele...
  • 36b12d5 [Mosaic GPU] Add end-to-end lowering example for a pointwise kernel using the...
  • 2c722d9 Cleanup: toward merging core.concrete_aval & xla.abstractify
  • 473e2bf Put abstract_mesh on every eqn so that we can preserve it during eval_jaxpr...
  • e1f037b Reduce the max_examples for splash attention tests
  • Additional commits viewable in compare view

Updates matplotlib from 3.9.3 to 3.10.0

Release notes

Sourced from matplotlib's releases.

REL: v3.10.0

Highlights of this release include:

- Preliminary support for free-threaded CPython 3.13
- New more-accessible color cycle
- Dark-mode diverging colormaps
- Exception handling control
- InsetIndicator artist
- FillBetweenPolyCollection
- Fill between 3D lines
- Data in 3D plots can now be dynamically clipped to the axes view limits
- Rotating 3d plots with the mouse
- Increased Figure limits with Agg renderer
- Subfigures no longer provisional
- Subfigures are now added in row-major order

Matplotlib v3.10.0rc1

This is the first release candidate for Matplotlib 3.10.0

REL: 3.9.4

This is the fourth bugfix release of the 3.9.x series.

This release contains two bug-fixes:

  • Fix toolbar icons in GTK backend
  • Fix Poly3DCollection initialization with list of lists
Commits
  • 8d64f03 REL: v3.10.0 release
  • d9dfee8 [doc] Fix dead links
  • 87a603f Update release notes for 3.10.0
  • cdecf97 Update github stats for 3.10
  • b8d19bd Merge pull request #29306 from meeseeksmachine/auto-backport-of-pr-29242-on-v...
  • a42d0ed Backport PR #29242: DOC: Add kwdoc list to scatter() docstring
  • 1900640 Merge pull request #29299 from QuLogic/merge-v39x
  • 815389c Merge branch 'v3.9.x' into v3.10.x
  • 73873c0 DOC: Create release notes for 3.9.4
  • 9d17a2b DOC: Add Zenodo DOI for 3.9.4
  • Additional commits viewable in compare view

Updates mistune from 3.0.2 to 3.1.0

Release notes

Sourced from mistune's releases.

v3.1.0

   🐞 Bug Fixes

    View changes on GitHub
Changelog

Sourced from mistune's changelog.

Version 3.1.0

Released on Dec 30, 2024

  • Fix only HTML-escape URLs when rendering to HTML
  • Add block_quote prefix on empty lines too
Commits
  • 177a0ce chore: release 3.1.0
  • bf54ef6 Merge pull request #390 from patrick91/patch-1
  • 498f0e8 Merge pull request #395 from mentalisttraceur/fix-url-ampersand
  • 77f925e Merge pull request #393 from mentalisttraceur/fix-codespan-ampersand
  • 4f91db8 fix: use correct importing for typing_extensions
  • f423704 fix: only HTML-escape URLs when rendering to HTML
  • 245c006 fix: only HTML-escape codespan in HTML render
  • 0772c78 fix: importing Self from typing_extensions
  • f7db503 fix: make typing-extension optional dependency
  • 6d04695 fix: cleanup unused imports
  • Additional commits viewable in compare view

Updates ml-dtypes from 0.5.0 to 0.5.1

Release notes

Sourced from ml-dtypes's releases.

v0.5.1 release

  • Fixed sign bit handling for float4 and float6 types.
  • Wheels now support Python 3.13 free-threading.
  • Wheels now support the Power architecture.
Changelog

Sourced from ml-dtypes's changelog.

[0.5.1] - 2025-01-06

  • Fixed sign bit handling for float4 and float6 types.
  • Wheels now support Python 3.13 free-threading.
  • Wheels now support the Power architecture.
Commits
  • 560866c Merge pull request #249 from hawkinsp:release
  • c26c582 Update changelog and version numbers for v0.5.1 release.
  • 47ac443 Merge pull request #248 from hawkinsp:ft
  • 19eea4d Enable free-threaded wheels in wheel builds.
  • 4da8594 Merge pull request #230 from sandeepgupta12:main
  • ee65f44 Merge pull request #247 from jax-ml:dependabot/github_actions/actions/upload-...
  • a09b65f PR #19096: Add F4E2M1FN and F8E8M0FNU types
  • 30c059a Bump actions/upload-artifact from 4.4.3 to 4.5.0
  • 986e373 PR #19096: Add F4E2M1FN and F8E8M0FNU types
  • 215c9f0 [XLA] Start adding S1 and U1 as data types
  • Additional commits viewable in compare view

Updates pennylane from 0.35.1 to 0.39.0

Release notes

Sourced from pennylane's releases.

Release 0.39.0

  • Functionality for creating custom Hamiltonians on arbitrary lattices has been added. [(#6226)](PennyLaneAI/pennylane#6226) [(#6237)](PennyLaneAI/pennylane#6237)

    Hamiltonians beyond the available boiler-plate ones in the qml.spin module can be created with the addition of three new functions:

    • qml.spin.Lattice: a new object for instantiating customized lattices via primitive translation vectors and unit cell parameters,
    • qml.spin.generate_lattice: a utility function for creating standard Lattice objects, including 'chain', 'square', 'rectangle', 'triangle', 'honeycomb', 'kagome', 'lieb', 'cubic', 'bcc', 'fcc', and 'diamond',
    • qml.spin.spin_hamiltonian: generates a spin Hamiltonian object given a Lattice object with custom edges/nodes.

    An example is shown below for a $3 \times 3$ triangular lattice with open boundary conditions.

    lattice = qml.spin.Lattice(
        n_cells=[3, 3],
        vectors=[[1, 0], [np.cos(np.pi/3), np.sin(np.pi/3)]],
        positions=[[0, 0]],
        boundary_condition=False
    )

    We can validate this lattice against qml.spin.generate_lattice('triangle', ...) by checking the lattice_points (the $(x, y)$ coordinates of all sites in the lattice):

    >>> lp = lattice.lattice_points
    >>> triangular_lattice = qml.spin.generate_lattice('triangle', n_cells=[3, 3])
    >>> np.allclose(lp, triangular_lattice.lattice_points)
    True

    The edges of the Lattice object are nearest-neighbour by default, where we can add edges by using its add_edge method.

    Optionally, a Lattice object can have interactions and fields endowed to it by specifying values for its custom_edges and custom_nodes keyword arguments. The Hamiltonian can then be extracted with the qml.spin.spin_hamiltonian function. An example is shown below for the transverse-field Ising model Hamiltonian on a $3 \times 3$ triangular lattice. Note that the custom_edges and custom_nodes keyword arguments only need to be defined for one unit cell repetition.

    edges = [
        (0, 1), (0, 3), (1, 3)
    ]
    lattice = qml.spin.Lattice(
    n_cells=[3, 3],
    vectors=[[1, 0], [np.cos(np.pi/3), np.sin(np.pi/3)]],
    positions=[[0, 0]],
    boundary_condition=False,
    custom_edges=[[edge, ("ZZ", -1.0)] for edge in edges],
    custom_nodes=[[i, ("X", -0.5)] for i in range(3*3)],
    )

... (truncated)

Commits
  • 51797f7 Bump minimum Lightning and Catalyst versions (#6512)
  • 72bdaa2 Small fixes (#6513)
  • 6890211 Update typing_extensions pinning in requirements.txt (#6508)
  • 32e1d90 Update Iterable import package in decompose transform (#6507)
  • fb3892f Final documentation fixes for 0.39 feature freeze (#6469)
  • cf0cbe2 update neighbour_order error in Lattice (#6497)
  • 3ac1957 Revert "Adding string representation for some operators" (#6501)
  • b851ce3 Fix bug where unexpected queuing occurs in qml.ctrl among other functions (#6...
  • cd9fac9 Adding string representation for some operators (#6493)
  • d5d3c2b Fix snapshot wire order when simulation indices different than device wires (...
  • Additional commits viewable in compare view

Updates pennylane-lightning from 0.35.1 to 0.39.0

Release notes

Sourced from pennylane-lightning's releases.

Release 0.39.0

New features since last release

Breaking changes

  • Update MacOS wheel build to 13.0 for X86_64 and ARM due to the deprecation of MacOS-12 CI runners. [(#969)](PennyLaneAI/pennylane-lightning#969)

  • Deprecate initSV() and add resetStateVector() from the C++ API Lightning-GPU. This is to remove the reset_state additional call in the Python layer. [(#933)](PennyLaneAI/pennylane-lightning#933)

  • Deprecate PI gates implementation in Lightning-Qubit. The PI gates were the first implementation of gate kernels in lightning.qubit using pre-computed indices, prior to the development of LM (less memory) and AVX kernels. This deprecation is in favour of reducing compilation time and ensuring that Lightning-Qubit only relies on LM kernels in the dynamic dispatcher across all platforms. [(#925)](PennyLaneAI/pennylane-lightning#925)

  • Remove PowerPC wheel build recipe for Lightning-Qubit. [(#902)](PennyLaneAI/pennylane-lightning#902)

  • Update MacOS wheel builds to require Monterey (12.0) or greater for x86_64 and ARM. This was required to update Pybind11 to the latest release (2.13.5) for enabling Numpy 2.0 support in Lightning. [(#901)](PennyLaneAI/pennylane-lightning#901)

  • Remove support for Python 3.9 for all Lightning simulators. [(#891)](PennyLaneAI/pennylane-lightning#891)

Improvements

... (truncated)

Commits

Updates qiskit-aer from 0.15.1 to 0.16.0

Release notes

Sourced from qiskit-aer's releases.

Release 0.16

Aer 0.16 is released to support Qiskit 1.3.

What's Changed

Full Changelog: Qiskit/qiskit-aer@0.15.1...0.16

Commits

Updates scipy from 1.13.1 to 1.15.1

Release notes

Sourced from scipy's releases.

SciPy 1.15.1 Release Notes

SciPy 1.15.1 is a bug-fix release with no new features compared to 1.15.0. Importantly, an issue with the import of scipy.optimize breaking other packages has been fixed.

Authors

  • Name (commits)
  • Ralf Gommers (3)
  • Rohit Goswami (1)
  • Matt Haberland (2)
  • Tyler Reddy (7)
  • Daniel Schmitz (1)

A total of 5 people contributed to this release. People with a "+" by their names contributed a patch for the first time. This list of names is automatically generated, and may not be fully complete.

SciPy 1.15.0 Release Notes

SciPy 1.15.0 is the culmination of 6 months of hard work. It contains many new features, numerous bug-fixes, improved test coverage and better documentation. There have been a number of deprecations and API changes in this release, which are documented below. All users are encouraged to upgrade to this release, as there are a large number of bug-fixes and optimizations. Before upgrading, we recommend that users check that their own code does not use deprecated SciPy functionality (to do so, run your code with python -Wd and check for DeprecationWarning s). Our development attention will now shift to bug-fix releases on the 1.15.x branch, and on adding new features on the main branch.

This release requires Python 3.10-3.13 and NumPy 1.23.5 or greater.

Highlights of this release

  • Sparse arrays are now fully functional for 1-D and 2-D arrays. We recommend that all new code use sparse arrays instead of sparse matrices and that developers start to migrate their existing code from sparse matrix to sparse array: migration_to_sparray. Both sparse.linalg and sparse.csgraph work with either sparse matrix or sparse array and work internally with sparse array.
  • Sparse arrays now provide basic support for n-D arrays in the COO format

... (truncated)

Commits
  • df134ea REL: 1.15.1 rel commit [wheel build]
  • f939c19 Merge pull request #22296 from tylerjereddy/treddy_1.15.1_backports
  • 609bb3c DOC: PR 22296 revisions
  • 5bfd6a2 TST: stats.Normal: bump tolerance on test of logcdf (#22276)
  • f9a549c DOC: update 1.15.1 relnotes
  • 6f011d8 MAINT: Update highs subproject commit
  • 0ff01de TST: fix thread safety issue in interpolate.bsplines memmap test
  • 21c65ab BLD: fix some issues with undeclared internal build dependencies
  • 826759e MAINT: fix url for array-api-extra git submodule
  • 9af1fcd Merge pull request #22235 from tylerjereddy/treddy_prep_1.15.1
  • Additional commits viewable in compare view

Updates scs to 3.2.7.post2

Commits

Updates sympy to 1.13.3

Commits
  • b4ce69a Merge pull request #27081 from oscarbenjamin/pr_11...

    Description has been truncated

…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), [matplotlib](https://github.com/matplotlib/matplotlib), [mistune](https://github.com/lepture/mistune), [ml-dtypes](https://github.com/jax-ml/ml_dtypes), [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.76 to 1.35.97
- [Commits](boto/botocore@1.35.76...1.35.97)

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

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

Updates `amazon-braket-pennylane-plugin` from 1.28.0 to 1.31.0
- [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.31.0)

Updates `jax` from 0.4.29 to 0.4.38
- [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.38)

Updates `jaxlib` from 0.4.29 to 0.4.38
- [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.38)

Updates `matplotlib` from 3.9.3 to 3.10.0
- [Release notes](https://github.com/matplotlib/matplotlib/releases)
- [Commits](matplotlib/matplotlib@v3.9.3...v3.10.0)

Updates `mistune` from 3.0.2 to 3.1.0
- [Release notes](https://github.com/lepture/mistune/releases)
- [Changelog](https://github.com/lepture/mistune/blob/master/docs/changes.rst)
- [Commits](lepture/mistune@v3.0.2...v3.1.0)

Updates `ml-dtypes` from 0.5.0 to 0.5.1
- [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.5.0...v0.5.1)

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

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

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

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

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

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-patch
  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: matplotlib
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: mistune
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: ml-dtypes
  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] <support@github.com>
@dependabot dependabot bot requested a review from a team as a code owner January 13, 2025 18:15
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Jan 13, 2025
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