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 12 updates #655

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 Dec 23, 2024

Updates the requirements on botocore, awscli, boto3, jax, jaxlib, jinja2, matplotlib, pennylane, pennylane-lightning, scipy, scs and sympy to permit the latest version.
Updates botocore from 1.35.76 to 1.35.86

Commits
  • f4334b1 Merge branch 'release-1.35.86'
  • a085b66 Bumping version to 1.35.86
  • ed96558 Update endpoints model
  • 2814b80 Update to latest models
  • e53ea2c Merge branch 'release-1.35.85'
  • d8189bd Merge branch 'release-1.35.85' into develop
  • 74239a6 Bumping version to 1.35.85
  • 17c839b Update endpoints model
  • 36a1e00 Update to latest models
  • 529ae09 Merge branch 'release-1.35.84'
  • Additional commits viewable in compare view

Updates awscli from 1.36.17 to 1.36.27

Commits
  • c106596 Merge branch 'release-1.36.27'
  • bd6788d Bumping version to 1.36.27
  • aa9e38b Update changelog based on model updates
  • ff45104 Merge branch 'release-1.36.26'
  • bb86e78 Merge branch 'release-1.36.26' into develop
  • 7d08404 Bumping version to 1.36.26
  • 0cd543c Update changelog based on model updates
  • c629426 Update Example 6 title for aws s3 sync help doc (#8638)
  • d8c89cb Add GitHub Workflow for syncing PRs from develop to v2 (#9142)
  • 08c0229 CLI examples cloudfront, cognito-idp, ec2, ecr-public, ecs, inspector2, ivs-r...
  • Additional commits viewable in compare view

Updates boto3 from 1.35.76 to 1.35.86

Commits
  • 84a4b27 Merge branch 'release-1.35.86'
  • 2f685aa Bumping version to 1.35.86
  • 6c73842 Add changelog entries from botocore
  • 32d54c8 Merge branch 'release-1.35.85'
  • 64307a4 Merge branch 'release-1.35.85' into develop
  • cacd5ba Bumping version to 1.35.85
  • 0aa5348 Add changelog entries from botocore
  • 9cd0908 Merge branch 'release-1.35.84'
  • d624d7f Merge branch 'release-1.35.84' into develop
  • 6b4476e Bumping version to 1.35.84
  • 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 jinja2 from 3.1.4 to 3.1.5

Release notes

Sourced from jinja2's releases.

3.1.5

This is the Jinja 3.1.5 security fix release, which fixes security issues and bugs but does not otherwise change behavior and should not result in breaking changes compared to the latest feature release.

PyPI: https://pypi.org/project/Jinja2/3.1.5/ Changes: https://jinja.palletsprojects.com/changes/#version-3-1-5 Milestone: https://github.com/pallets/jinja/milestone/16?closed=1

  • The sandboxed environment handles indirect calls to str.format, such as by passing a stored reference to a filter that calls its argument. GHSA-q2x7-8rv6-6q7h
  • Escape template name before formatting it into error messages, to avoid issues with names that contain f-string syntax. #1792, GHSA-gmj6-6f8f-6699
  • Sandbox does not allow clear and pop on known mutable sequence types. #2032
  • Calling sync render for an async template uses asyncio.run. #1952
  • Avoid unclosed auto_aiter warnings. #1960
  • Return an aclose-able AsyncGenerator from Template.generate_async. #1960
  • Avoid leaving root_render_func() unclosed in Template.generate_async. #1960
  • Avoid leaving async generators unclosed in blocks, includes and extends. #1960
  • The runtime uses the correct concat function for the current environment when calling block references. #1701
  • Make |unique async-aware, allowing it to be used after another async-aware filter. #1781
  • |int filter handles OverflowError from scientific notation. #1921
  • Make compiling deterministic for tuple unpacking in a {% set ... %} call. #2021
  • Fix dunder protocol (copy/pickle/etc) interaction with Undefined objects. #2025
  • Fix copy/pickle support for the internal missing object. #2027
  • Environment.overlay(enable_async) is applied correctly. #2061
  • The error message from FileSystemLoader includes the paths that were searched. #1661
  • PackageLoader shows a clearer error message when the package does not contain the templates directory. #1705
  • Improve annotations for methods returning copies. #1880
  • urlize does not add mailto: to values like @a@b. #1870
  • Tests decorated with @pass_context can be used with the |select filter. #1624
  • Using set for multiple assignment (a, b = 1, 2) does not fail when the target is a namespace attribute. #1413
  • Using set in all branches of {% if %}{% elif %}{% else %} blocks does not cause the variable to be considered initially undefined. #1253
Changelog

Sourced from jinja2's changelog.

Version 3.1.5

Released 2024-12-21

  • The sandboxed environment handles indirect calls to str.format, such as by passing a stored reference to a filter that calls its argument. :ghsa:q2x7-8rv6-6q7h
  • Escape template name before formatting it into error messages, to avoid issues with names that contain f-string syntax. :issue:1792, :ghsa:gmj6-6f8f-6699
  • Sandbox does not allow clear and pop on known mutable sequence types. :issue:2032
  • Calling sync render for an async template uses asyncio.run. :pr:1952
  • Avoid unclosed auto_aiter warnings. :pr:1960
  • Return an aclose-able AsyncGenerator from Template.generate_async. :pr:1960
  • Avoid leaving root_render_func() unclosed in Template.generate_async. :pr:1960
  • Avoid leaving async generators unclosed in blocks, includes and extends. :pr:1960
  • The runtime uses the correct concat function for the current environment when calling block references. :issue:1701
  • Make |unique async-aware, allowing it to be used after another async-aware filter. :issue:1781
  • |int filter handles OverflowError from scientific notation. :issue:1921
  • Make compiling deterministic for tuple unpacking in a {% set ... %} call. :issue:2021
  • Fix dunder protocol (copy/pickle/etc) interaction with Undefined objects. :issue:2025
  • Fix copy/pickle support for the internal missing object. :issue:2027
  • Environment.overlay(enable_async) is applied correctly. :pr:2061
  • The error message from FileSystemLoader includes the paths that were searched. :issue:1661
  • PackageLoader shows a clearer error message when the package does not contain the templates directory. :issue:1705
  • Improve annotations for methods returning copies. :pr:1880
  • urlize does not add mailto: to values like @a@b. :pr:1870
  • Tests decorated with @pass_context`` can be used with the ``|select`` filter. :issue:1624`
  • Using set for multiple assignment (a, b = 1, 2) does not fail when the target is a namespace attribute. :issue:1413
  • Using set in all branches of {% if %}{% elif %}{% else %} blocks does not cause the variable to be considered initially undefined. :issue:1253
Commits
  • 877f6e5 release version 3.1.5
  • 8d58859 remove test pypi
  • eda8fe8 update dev dependencies
  • c8fdce1 Fix bug involving calling set on a template parameter within all branches of ...
  • 66587ce Fix bug where set would sometimes fail within if
  • fbc3a69 Add support for namespaces in tuple parsing (#1664)
  • b8f4831 more comments about nsref assignment
  • ee83219 Add support for namespaces in tuple assignment
  • 1d55cdd Triple quotes in docs (#2064)
  • 8a8eafc edit block assignment section
  • 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 pennylane from 0.38.0 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.38.0 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 scipy from 1.13.1 to 1.14.1

Release notes

Sourced from scipy's releases.

SciPy 1.14.1 Release Notes

SciPy 1.14.1 adds support for Python 3.13, including binary wheels on PyPI. Apart from that, it is a bug-fix release with no new features compared to 1.14.0.

Authors

  • Name (commits)
  • h-vetinari (1)
  • Evgeni Burovski (1)
  • CJ Carey (2)
  • Lucas Colley (3)
  • Ralf Gommers (3)
  • Melissa Weber Mendonça (1)
  • Andrew Nelson (3)
  • Nick ODell (1)
  • Tyler Reddy (36)
  • Daniel Schmitz (1)
  • Dan Schult (4)
  • Albert Steppi (2)
  • Ewout ter Hoeven (1)
  • Tibor Völcker (2) +
  • Adam Turner (1) +
  • Warren Weckesser (2)
  • ਗਗਨਦੀਪ ਸਿੰਘ (Gagandeep Singh) (1)

A total of 17 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.14.0 Release Notes

SciPy 1.14.0 is the culmination of 3 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.14.x branch, and on adding new features on the main branch.

This release requires Python 3.10+ and NumPy 1.23.5 or greater.

... (truncated)

Commits
  • 92d2a85 REL: 1.14.1 rel commit [wheel build]
  • 85623a1 Merge pull request #21362 from tylerjereddy/treddy_1.14.1_backports
  • d924005 MAINT: PR 21362 revisions [wheel build]
  • b901a4e MAINT, CI: PR 21362 revisions [wheel build]
  • 2a7ec60 MAINT, BLD: PR 21362 revisions [wheel build]
  • f4f084d MAINT, CI: PR 21362 revisions [wheel build]
  • b712fc6 DOC: update 1.14.1 relnotes [wheel build]
  • cdd5aca MAINT: special: Accommodate changed integer handling in NumPy 2.0. (#21401)
  • 0f91838 BLD: cp313 wheels on manylinux_aarch64 (#21409)
  • 6dd0b00 MAINT, CI: wheel build changes [wheel build]
  • Additional commits viewable in compare view

Updates scs to 3.2.7

Release notes

Sourced from scs's releases.

3.2.7

Fix norm_inf out of bounds issue.

Commits

Updates sympy to 1.13.3

Commits
  • b4ce69a Merge pull request #27081 from oscarbenjamin/pr_113_backport_fixes
  • 575dbfa author: update AUTHORS file
  • 408b571 author: add Matt Wang to .mailmap
  • 77fffbf remove unnecessary parentheses in func role from docstring
  • 2101e6d remove unnecessary parentheses in func role from doc
  • 09f4810 maint(ci): don't use ruff to check files outside sympy
  • 31623f0 release: bump version to 1.13.3
  • 766458c fix(quantum): sympify inputs to clebsch_gordan
  • e34f10e test(stats): fix Markov tests for empty matrices
  • 6db23e6 fix(matrices): Matrix([[], []]) -> Matrix(2, 0, [])
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

…ates

Updates the requirements on [botocore](https://github.com/boto/botocore), [awscli](https://github.com/aws/aws-cli), [boto3](https://github.com/boto/boto3), [jax](https://github.com/jax-ml/jax), [jaxlib](https://github.com/jax-ml/jax), [jinja2](https://github.com/pallets/jinja), [matplotlib](https://github.com/matplotlib/matplotlib), [pennylane](https://github.com/PennyLaneAI/pennylane), [pennylane-lightning](https://github.com/PennyLaneAI/pennylane-lightning), [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.86
- [Commits](boto/botocore@1.35.76...1.35.86)

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

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

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 `jinja2` from 3.1.4 to 3.1.5
- [Release notes](https://github.com/pallets/jinja/releases)
- [Changelog](https://github.com/pallets/jinja/blob/main/CHANGES.rst)
- [Commits](pallets/jinja@3.1.4...3.1.5)

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 `pennylane` from 0.38.0 to 0.39.0
- [Release notes](https://github.com/PennyLaneAI/pennylane/releases)
- [Commits](PennyLaneAI/pennylane@v0.38.0...v0.39.0)

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

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-patch
  dependency-group: dev-dependencies
- dependency-name: boto3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  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: jinja2
  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: 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: 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 December 23, 2024 18:54
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Dec 23, 2024
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