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 4 directories with 21 updates #275

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jul 2, 2024

Updates the requirements on boto3, pytest, requests, amazon-braket-sdk, pennylane, amazon-braket-default-simulator, amazon-braket-pennylane-plugin, awscli, botocore, dask, matplotlib, numpy, pennylane-lightning, qiskit-braket-provider, scikit-learn, scipy, ipykernel, keras, pennylane-lightning[gpu], pydantic and typing-extensions to permit the latest version.
Updates boto3 from 1.34.96 to 1.34.137

Commits
  • 441bc9e Merge branch 'release-1.34.137'
  • 00b24b9 Bumping version to 1.34.137
  • d72ff46 Add changelog entries from botocore
  • 7ba80c1 Merge branch 'release-1.34.136' into develop
  • 04045c4 Merge branch 'release-1.34.136'
  • c04875b Bumping version to 1.34.136
  • 5df3444 Add changelog entries from botocore
  • dcfb592 Merge pull request #4182 from kdaily/kdaily-remove-opsworks-collections-integ...
  • acbe904 Do not test opsworks collections
  • 359f0b2 Merge branch 'release-1.34.135'
  • Additional commits viewable in compare view

Updates pytest from 8.2.0 to 8.2.2

Release notes

Sourced from pytest's releases.

8.2.2

pytest 8.2.2 (2024-06-04)

Bug Fixes

  • #12355: Fix possible catastrophic performance slowdown on a certain parametrization pattern involving many higher-scoped parameters.
  • #12367: Fix a regression in pytest 8.2.0 where unittest class instances (a fresh one is created for each test) were not released promptly on test teardown but only on session teardown.
  • #12381: Fix possible "Directory not empty" crashes arising from concurent cache dir (.pytest_cache) creation. Regressed in pytest 8.2.0.

Improved Documentation

  • #12290: Updated Sphinx theme to use Furo instead of Flask, enabling Dark mode theme.
  • #12356: Added a subsection to the documentation for debugging flaky tests to mention lack of thread safety in pytest as a possible source of flakyness.
  • #12363: The documentation webpages now links to a canonical version to reduce outdated documentation in search engine results.

8.2.1

pytest 8.2.1 (2024-05-19)

Improvements

  • #12334: Support for Python 3.13 (beta1 at the time of writing).

Bug Fixes

  • #12120: Fix [PermissionError]{.title-ref} crashes arising from directories which are not selected on the command-line.
  • #12191: Keyboard interrupts and system exits are now properly handled during the test collection.
  • #12300: Fixed handling of 'Function not implemented' error under squashfuse_ll, which is a different way to say that the mountpoint is read-only.
  • #12308: Fix a regression in pytest 8.2.0 where the permissions of automatically-created .pytest_cache directories became rwx------ instead of the expected rwxr-xr-x.

Trivial/Internal Changes

  • #12333: pytest releases are now attested using the recent Artifact Attestation support from GitHub, allowing users to verify the provenance of pytest's sdist and wheel artifacts.
Commits
  • 329d371 Prepare release version 8.2.2
  • 214d098 Merge pull request #12414 from bluetech/backport-12409
  • 153a436 [8.2.x] fixtures: fix catastrophic performance problem in reorder_items
  • b41d5a5 Merge pull request #12412 from pytest-dev/backport-12408-to-8.2.x
  • 9bb73d7 [8.2.x] cacheprovider: fix "Directory not empty" crash from cache directory c...
  • 4569a01 [8.2.x] doc: Update trainings/events (#12402)
  • 1d103e5 [8.2.x] Clarify pytest_ignore_collect docs (#12386)
  • 240a252 [8.2.x] Add html_baseurl to sphinx conf.py (#12372)
  • a5ee3c4 Merge pull request #12370 from pytest-dev/backport-12368-to-8.2.x
  • f7358ae [8.2.x] unittest: fix class instances no longer released on test teardown sin...
  • Additional commits viewable in compare view

Updates requests to 2.32.3

Release notes

Sourced from requests's releases.

v2.32.3

2.32.3 (2024-05-29)

Bugfixes

  • Fixed bug breaking the ability to specify custom SSLContexts in sub-classes of HTTPAdapter. (#6716)
  • Fixed issue where Requests started failing to run on Python versions compiled without the ssl module. (#6724)
Changelog

Sourced from requests's changelog.

2.32.3 (2024-05-29)

Bugfixes

  • Fixed bug breaking the ability to specify custom SSLContexts in sub-classes of HTTPAdapter. (#6716)
  • Fixed issue where Requests started failing to run on Python versions compiled without the ssl module. (#6724)

2.32.2 (2024-05-21)

Deprecations

  • To provide a more stable migration for custom HTTPAdapters impacted by the CVE changes in 2.32.0, we've renamed _get_connection to a new public API, get_connection_with_tls_context. Existing custom HTTPAdapters will need to migrate their code to use this new API. get_connection is considered deprecated in all versions of Requests>=2.32.0.

    A minimal (2-line) example has been provided in the linked PR to ease migration, but we strongly urge users to evaluate if their custom adapter is subject to the same issue described in CVE-2024-35195. (#6710)

2.32.1 (2024-05-20)

Bugfixes

  • Add missing test certs to the sdist distributed on PyPI.

2.32.0 (2024-05-20)

Security

  • Fixed an issue where setting verify=False on the first request from a Session will cause subsequent requests to the same origin to also ignore cert verification, regardless of the value of verify. (GHSA-9wx4-h78v-vm56)

Improvements

  • verify=True now reuses a global SSLContext which should improve request time variance between first and subsequent requests. It should also minimize certificate load time on Windows systems when using a Python version built with OpenSSL 3.x. (#6667)
  • Requests now supports optional use of character detection (chardet or charset_normalizer) when repackaged or vendored. This enables pip and other projects to minimize their vendoring surface area. The Response.text() and apparent_encoding APIs will default to utf-8 if neither library is present. (#6702)

... (truncated)

Commits
  • 0e322af v2.32.3
  • e188799 Don't create default SSLContext if ssl module isn't present (#6724)
  • 145b539 Merge pull request #6716 from sigmavirus24/bug/6715
  • b1d73dd Don't use default SSLContext with custom poolmanager kwargs
  • 6badbac Update HISTORY.md
  • a62a2d3 Allow for overriding of specific pool key params
  • 88dce9d v2.32.2
  • c98e4d1 Merge pull request #6710 from nateprewitt/api_rename
  • 92075b3 Add deprecation warning
  • aa1461b Move _get_connection to get_connection_with_tls_context
  • Additional commits viewable in compare view

Updates amazon-braket-sdk from 1.80.0 to 1.83.0

Release notes

Sourced from amazon-braket-sdk's releases.

v1.83.0

Deprecations and Removals

  • Remove OQC

Features

  • Use run_multiple for local batches

Documentation Changes

  • update PR title instructions

v1.82.0

Features

  • Track classical target indices for measurements

Bug Fixes and Other Changes

  • Add test to check classical indices used in measurement are preserved between Circuit and OpenQASM Translations.

v1.81.1

Bug Fixes and Other Changes

  • Error when FreeParameters are named QASM types

v1.81.0

Features

  • Add IQM to get compiled program convenience method

v1.80.1

Bug Fixes and Other Changes

  • docs: add stack exchange badge to the readme
  • Implement braket.ahs.AnalogHamiltonianSimulation.from_ir()
Changelog

Sourced from amazon-braket-sdk's changelog.

v1.83.0 (2024-06-28)

Deprecations and Removals

  • Remove OQC

Features

  • Use run_multiple for local batches

Documentation Changes

  • update PR title instructions

v1.82.0 (2024-06-27)

Features

  • Track classical target indices for measurements

Bug Fixes and Other Changes

  • Add test to check classical indices used in measurement are preserved between Circuit and OpenQASM Translations.

v1.81.1 (2024-06-17)

Bug Fixes and Other Changes

  • Error when FreeParameters are named QASM types

v1.81.0 (2024-06-13)

Features

  • Add IQM to get compiled program convenience method

v1.80.1 (2024-06-10)

Bug Fixes and Other Changes

  • docs: add stack exchange badge to the readme
  • Implement braket.ahs.AnalogHamiltonianSimulation.from_ir()
Commits
  • 1e4a76f prepare release v1.83.0
  • 686aaf8 deprecation: Remove OQC (#1014)
  • dabcb5e feat: Use run_multiple for local batches (#1005)
  • 9f6adcf doc: update PR title instructions (#994)
  • fb307e3 infra: bump thehanimo/pr-title-checker from 1.4.1 to 1.4.2 (#1010)
  • 96b4200 infra: bump pypa/gh-action-pypi-publish from 1.8.14 to 1.9.0 (#1012)
  • 24d4d5f infra: bump actions/checkout from 4.1.1 to 4.1.5 (#967)
  • 12d0d67 infra: bump actions/setup-python from 5.0.0 to 5.1.0 (#931)
  • 239fc81 update development version to v1.82.1.dev0
  • 6cd842e prepare release v1.82.0
  • Additional commits viewable in compare view

Updates boto3 from 1.34.96 to 1.34.137

Commits
  • 441bc9e Merge branch 'release-1.34.137'
  • 00b24b9 Bumping version to 1.34.137
  • d72ff46 Add changelog entries from botocore
  • 7ba80c1 Merge branch 'release-1.34.136' into develop
  • 04045c4 Merge branch 'release-1.34.136'
  • c04875b Bumping version to 1.34.136
  • 5df3444 Add changelog entries from botocore
  • dcfb592 Merge pull request #4182 from kdaily/kdaily-remove-opsworks-collections-integ...
  • acbe904 Do not test opsworks collections
  • 359f0b2 Merge branch 'release-1.34.135'
  • Additional commits viewable in compare view

Updates pennylane from 0.35.1 to 0.36.0

Release notes

Sourced from pennylane's releases.

Release 0.36.0

Two new user-facing classes enable calculating and propagating gate errors in PennyLane:

  • qml.resource.SpectralNormError: the spectral norm error is defined as the distance, in spectral norm, between the true unitary we intend to apply and the approximate unitary that is actually applied.

  • qml.resource.ErrorOperation: a base class that inherits from qml.operation.Operation and represents quantum operations which carry some form of algorithmic error.

    SpectralNormError can be used for back-of-the-envelope type calculations like obtaining the spectral norm error between two unitaries via get_error:

    import pennylane as qml 
    from pennylane.resource import ErrorOperation, SpectralNormError
    intended_op = qml.RY(0.40, 0)
    actual_op = qml.RY(0.41, 0) # angle of rotation is slightly off

    >>> SpectralNormError.get_error(intended_op, actual_op) 
    0.004999994791668309 

    SpectralNormError is also a key tool to specify errors in larger quantum circuits:

  • For operations representing a major building block of an algorithm, we can create a custom operation that inherits from ErrorOperation. This child class must override the error method and should return a SpectralNormError instance:

    class MyErrorOperation(ErrorOperation):
    def init(self, error_val, wires):
    self.error_val = error_val
    super().init(wires=wires)
    def error(self):
    return SpectralNormError(self.error_val)

    In this toy example, MyErrorOperation introduces an arbitrary SpectralNormError when called in a QNode. It does not require a decomposition or matrix representation when used with null.qubit (suggested for use with resource and error estimation since circuit executions are not required to calculate resources or errors).

    dev = qml.device("null.qubit")
    @​qml.qnode(dev)
    def circuit():

... (truncated)

Commits

Updates requests from 2.31.0 to 2.32.3

Release notes

Sourced from requests's releases.

v2.32.3

2.32.3 (2024-05-29)

Bugfixes

  • Fixed bug breaking the ability to specify custom SSLContexts in sub-classes of HTTPAdapter. (#6716)
  • Fixed issue where Requests started failing to run on Python versions compiled without the ssl module. (#6724)
Changelog

Sourced from requests's changelog.

2.32.3 (2024-05-29)

Bugfixes

  • Fixed bug breaking the ability to specify custom SSLContexts in sub-classes of HTTPAdapter. (#6716)
  • Fixed issue where Requests started failing to run on Python versions compiled without the ssl module. (#6724)

2.32.2 (2024-05-21)

Deprecations

  • To provide a more stable migration for custom HTTPAdapters impacted by the CVE changes in 2.32.0, we've renamed _get_connection to a new public API, get_connection_with_tls_context. Existing custom HTTPAdapters will need to migrate their code to use this new API. get_connection is considered deprecated in all versions of Requests>=2.32.0.

    A minimal (2-line) example has been provided in the linked PR to ease migration, but we strongly urge users to evaluate if their custom adapter is subject to the same issue described in CVE-2024-35195. (#6710)

2.32.1 (2024-05-20)

Bugfixes

  • Add missing test certs to the sdist distributed on PyPI.

2.32.0 (2024-05-20)

Security

  • Fixed an issue where setting verify=False on the first request from a Session will cause subsequent requests to the same origin to also ignore cert verification, regardless of the value of verify. (GHSA-9wx4-h78v-vm56)

Improvements

  • verify=True now reuses a global SSLContext which should improve request time variance between first and subsequent requests. It should also minimize certificate load time on Windows systems when using a Python version built with OpenSSL 3.x. (#6667)
  • Requests now supports optional use of character detection (chardet or charset_normalizer) when repackaged or vendored. This enables pip and other projects to minimize their vendoring surface area. The Response.text() and apparent_encoding APIs will default to utf-8 if neither library is present. (#6702)

... (truncated)

Commits
  • 0e322af v2.32.3
  • e188799 Don't create default SSLContext if ssl module isn't present (#6724)
  • 145b539 Merge pull request #6716 from sigmavirus24/bug/6715
  • b1d73dd Don't use default SSLContext with custom poolmanager kwargs
  • 6badbac Update HISTORY.md
  • a62a2d3 Allow for overriding of specific pool key params
  • 88dce9d v2.32.2
  • c98e4d1 Merge pull request #6710 from nateprewitt/api_rename
  • 92075b3 Add deprecation warning
  • aa1461b Move _get_connection to get_connection_with_tls_context
  • Additional commits viewable in compare view

Updates amazon-braket-default-simulator from 1.23.1 to 1.26.0

Release notes

Sourced from amazon-braket-default-simulator's releases.

v1.26.0

Features

  • Introduce run_multiple method

Bug Fixes and Other Changes

  • Ignore qubit_count parameter for JAQCD

v1.25.0

Features

  • Track classical register indices for measurements

Bug Fixes and Other Changes

  • Include measured in noncontiguous qubit map

v1.24.1

Bug Fixes and Other Changes

  • Use csr_matrix.getH() instead of H

v1.24.0

Features

  • support non-contiguous qubit indices local simulator

v1.23.4

Bug Fixes and Other Changes

  • use numpy for float comparison

v1.23.3

Bug Fixes and Other Changes

  • fix signed integer casting

v1.23.2

Bug Fixes and Other Changes

  • Integer division for IntegerLiterals
Changelog

Sourced from amazon-braket-default-simulator's changelog.

v1.26.0 (2024-06-27)

Features

  • Introduce run_multiple method

Bug Fixes and Other Changes

  • Ignore qubit_count parameter for JAQCD

v1.25.0 (2024-06-26)

Features

  • Track classical register indices for measurements

Bug Fixes and Other Changes

  • Include measured in noncontiguous qubit map

v1.24.1 (2024-06-26)

Bug Fixes and Other Changes

  • Use csr_matrix.getH() instead of H

v1.24.0 (2024-06-24)

Features

  • support non-contiguous qubit indices local simulator

v1.23.4 (2024-06-20)

Bug Fixes and Other Changes

  • use numpy for float comparison

v1.23.3 (2024-06-19)

Bug Fixes and Other Changes

  • fix signed integer casting

v1.23.2 (2024-05-02)

Bug Fixes and Other Changes

  • Integer division for IntegerLiterals
Commits
  • 7b52b78 prepare release v1.26.0
  • e93e551 feat: Introduce run_multiple method (#264)
  • dc68323 change: Ignore qubit_count parameter for JAQCD (#269)
  • 3378eaa update development version to v1.25.1.dev0
  • bc5df7b prepare release v1.25.0
  • d663479 fix: Include measured in noncontiguous qubit map (#267)
  • c9730d2 feat: Track classical register indices for measurements (#266)
  • 7e717a2 update development version to v1.24.2.dev0
  • 3f17237 prepare release v1.24.1
  • 1454fb9 fix: Use csr_matrix.getH() instead of H (#268)
  • Additional commits viewable in compare view

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

Release notes

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

v1.28.0

Features

  • Support batch_execute for BraketLocalQubitDevice

v1.27.6

Bug Fixes and Other Changes

  • Support qml.counts for circuits

v1.27.5

Bug Fixes and Other Changes

  • Replace FreeParameter("b") with FreeParameter("d") in unittests

v1.27.4

Bug Fixes and Other Changes

  • Update autoray to >= 0.6.11

v1.27.3

Bug Fixes and Other Changes

  • pin autoray < 0.6.10

v1.27.2

Bug Fixes and Other Changes

  • Translate Sum for adjoint gradient

v1.27.1

Bug Fixes and Other Changes

  • Correct comment

v1.27.0

Features

  • support LinearCombination as observable
Changelog

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

v1.28.0 (2024-07-01)

Features

  • Support batch_execute for BraketLocalQubitDevice

v1.27.6 (2024-06-18)

Bug Fixes and Other Changes

  • Support qml.counts for circuits

v1.27.5 (2024-06-13)

Bug Fixes and Other Changes

  • Replace FreeParameter("b") with FreeParameter("d") in unittests

v1.27.4 (2024-06-03)

Bug Fixes and Other Changes

  • Update autoray to >= 0.6.11

v1.27.3 (2024-05-14)

Bug Fixes and Other Changes

  • pin autoray < 0.6.10

v1.27.2 (2024-05-08)

Bug Fixes and Other Changes

  • Translate Sum for adjoint gradient

v1.27.1 (2024-05-06)

Bug Fixes and Other Changes

  • Correct comment

v1.27.0 (2024-05-06)

Features

  • support LinearCombination as observable
Commits
  • 9c9e27e prepare release v1.28.0
  • 388dd74 test: Delete OQC integ test (#272)
  • 1377abd feat: Support batch_execute for BraketLocalQubitDevice (#269)
  • dfff7a6 update development version to v1.27.7.dev0
  • eabf16d prepare release v1.27.6
  • 0d5c883 infra: add pr_title_check workflow (#265)
  • d7c232f Support qml.counts for circuits (#267)
  • 7b9f700 update development version to v1.27.6.dev0
  • 2e8e130 prepare release v1.27.5
  • ad9237c change: Replace FreeParameter("b") with FreeParameter("d") in unittests (...
  • Additional commits viewable in compare view

Updates awscli from 1.32.96 to 1.33.19

Commits
  • 0617900 Merge branch 'release-1.33.19'
  • 00be98a Bumping version to 1.33.19
  • 1626155 Update changelog based on model updates
  • 3a67a7b Merge branch 'release-1.33.18'
  • 26f597d Merge branch 'release-1.33.18' into develop
  • 4ae2d7d Bumping version to 1.33.18
  • 54fe47d Update changelog based on model updates
  • 26dce83 Merge customizations for EMR
  • 95598e1 Merge branch 'release-1.33.17' into develop
  • ecfe6fd Merge branch 'release-1.33.17'
  • Additional commits viewable in compare view

Updates botocore from 1.34.96 to 1.34.137

Changelog

Sourced from botocore's changelog.

1.34.137

  • api-change:apigateway: Add v2 smoke tests and smithy smokeTests trait for SDK testing.
  • api-change:cognito-identity: Add v2 smoke tests and smithy smokeTests trait for SDK testing.
  • api-change:connect: Authentication profiles are Amazon Connect resources (in gated preview) that allow you to configure authentication settings for users in your contact center. This release adds support for new ListAuthenticationProfiles, DescribeAuthenticationProfile and UpdateAuthenticationProfile APIs.
  • api-change:docdb: Add v2 smoke tests and smithy smokeTests trait for SDK testing.
  • api-change:eks: Updates EKS managed node groups to support EC2 Capacity Blocks for ML
  • api-change:payment-cryptography: Added further restrictions on logging of potentially sensitive inputs and outputs.
  • api-change:payment-cryptography-data: Adding support for dynamic keys for encrypt, decrypt, re-encrypt and translate pin functions. With this change, customers can use one-time TR-31 keys directly in dataplane operations without the need to first import them into the service.
  • api-change:stepfunctions: Add v2 smoke tests and smithy smokeTests trait for SDK testing.
  • api-change:swf: Add v2 smoke tests and smithy smokeTests trait for SDK testing.
  • api-change:wafv2: JSON body inspection: Update documentation to clarify that JSON parsing doesn't include full validation.

1.34.136

  • api-change:acm-pca: Added CCPC_LEVEL_1_OR_HIGHER KeyStorageSecurityStandard and SM2 KeyAlgorithm and SM3WITHSM2 SigningAlgorithm for China regions.
  • api-change:cloudhsmv2: Added 3 new APIs to support backup sharing: GetResourcePolicy, PutResourcePolicy, and DeleteResourcePolicy. Added BackupArn to the output of the DescribeBackups API. Added support for BackupArn in the CreateCluster API.
  • api-change:connect: This release supports showing PreferredAgentRouting step via DescribeContact API.
  • api-change:emr: This release provides the support for new allocation strategies i.e. CAPACITY_OPTIMIZED_PRIORITIZED for Spot and PRIORITIZED for On-Demand by taking input of priority value for each instance type for instance fleet clusters.
  • api-change:glue: Added AttributesToGet parameter to Glue GetDatabases, allowing caller to limit output to include only the database name.
  • api-change:kinesisanalyticsv2: Support for Flink 1.19 in Managed Service for Apache Flink
  • api-change:opensearch: This release removes support for enabling or disabling Natural Language Query Processing feature for Amazon OpenSearch Service domains.
  • api-change:pi: Noting that the filter db.sql.db_id isn't available for RDS for SQL Server DB instances.
  • api-change:workspaces: Added support for Red Hat Enterprise Linux 8 on Amazon WorkSpaces Personal.

1.34.135

  • api-change:application-autoscaling: Amazon WorkSpaces customers can now use Application Auto Scaling to automatically scale the number of virtual desktops in a WorkSpaces pool.
  • api-change:chime-sdk-media-pipelines: Added Amazon Transcribe multi language identification to Chime SDK call analytics. Enabling customers sending single stream audio to generate call recordings using Chime SDK call analytics
  • api-change:cloudfront: Doc only update for CloudFront that fixes customer-reported issue
  • api-change:datazone: This release supports the data lineage feature of business data catalog in Amazon DataZone.
  • api-change:elasticache: Add v2 smoke tests and smithy smokeTests trait for SDK testing.
  • api-change:mq: This release makes the EngineVersion field optional for both broker and configuration and uses the latest available version by default. The AutoMinorVersionUpgrade field is also now optional for broker creation and defaults to 'true'.
  • api-change:qconnect: Adds CreateContentAssociation, ListContentAssociations, GetContentAssociation, and DeleteContentAssociation APIs.
  • api-change:quicksight: Adding support for Repeating Sections, Nested Filters
  • api-change:rds: Updates Amazon RDS documentation for TAZ export to S3.
  • api-change:sagemaker: Add capability for Admins to customize Studio experience for the user by showing or hiding Apps and MLTools.
  • api-change:workspaces: Added support for WorkSpaces Pools.

1.34.134

  • api-change:controltower: Added ListLandingZoneOperations API.
  • api-change:eks: Added support for disabling unmanaged addons during cluster creation.

... (truncated)

Commits
  • 9e27562 Merge branch 'release-1.34.137'
  • 9f8acbc Bumping version to 1.34.137
  • 13ff416 Update endpoints model
  • 71434ab Update to latest models
  • 446acfb Merge branch 'release-1.34.136'
  • ec6e342 Merge branch 'release-1.34.136' into develop
  • 09a10d8 Bumping version to 1.34.136
  • 9d5bd52 Update endpoints model
  • e3c5915 Update to latest models
  • ce75911 Merge branch 'release-1.34.135'
  • Additional commits viewable in compare view

Updates dask from 2024.4.2 to 2024.6.2

Release notes

Sourced from dask's releases.

2024.6.2

Changes

See the Changelog for more information.

2024.6.1

Changes

See the Changelog for more information.

2024.6.0

Changes

See the Changelog for more information.

2024.5.2

Changes

See the Changelog for more information.

2024.5.1

Changes

... (truncated)

Commits

Updates matplotlib from 3.8.4 to 3.9.0

Release notes

Sourced from matplotlib's releases.

REL: 3.9.0

Highlights of this release include:

  • Plotting and Annotation improvements
    • Axes.inset_axes is no longer experimental
    • Legend support for Boxplot
    • Percent sign in pie labels auto-escaped with usetex=True
    • hatch parameter for stackplot
    • Add option to plot only one half of violin plot
    • axhline and axhspan on polar axes
    • Subplot titles can now be automatically aligned
    • axisartist can now be used together with standard Formatters
    • Toggle minorticks on Axis
    • StrMethodFormatter now respects axes.unicode_minus
  • Figure, Axes, and Legend Layout
    • Subfigures now have controllable zorders
    • Getters for xmargin, ymargin and zmargin
  • Mathtext improvements
    • mathtext documentation improvements
    • mathtext spacing corrections
  • Widget Improvements
    • Check and Radio Button widgets support clearing
  • 3D plotting improvements
    • Setting 3D axis limits now set the limits exactly
  • Other improvements
    • New BackendRegistry for plotting backends
    • Add widths, heights and angles setter to EllipseCollection
    • image.interpolation_stage rcParam
    • Arrow patch position is now modifiable
    • NonUniformImage now has mouseover support

REL: v3.9.0rc2

This is the second release candidate for the meso release 3.9.0.

Commits
  • be56634 REL: v3.9.0
  • 846ce8a DOC: Finish documentation for 3.9.0
  • 8604f67 Merge pull request #28206 from meeseeksmachine/auto-backport-of-pr-28205-on-v...
  • 196c8db TST: Followup corrections to #28205
  • d8f3016 Backport PR #28205: TST: Fix tests with older versions of ipython
  • 4db5ac9 Merge pull request #28203 from QuLogic/auto-backport-of-pr-28164-on-v3.9.x
  • ef1a2db Merge pull request #28204 from meeseeksmachine/auto-backport-of-pr-28195-on-v...
  • e4384b8 Merge pull request #28191 from QuLogic/no-dev-theme

…pdates

Updates the requirements on [boto3](https://github.com/boto/boto3), [pytest](https://github.com/pytest-dev/pytest), [requests](https://github.com/psf/requests), [amazon-braket-sdk](https://github.com/amazon-braket/amazon-braket-sdk-python), [pennylane](https://github.com/PennyLaneAI/pennylane), [amazon-braket-default-simulator](https://github.com/amazon-braket/amazon-braket-default-simulator-python), [amazon-braket-pennylane-plugin](https://github.com/amazon-braket/amazon-braket-pennylane-plugin-python), [awscli](https://github.com/aws/aws-cli), [botocore](https://github.com/boto/botocore), [dask](https://github.com/dask/dask), [matplotlib](https://github.com/matplotlib/matplotlib), [numpy](https://github.com/numpy/numpy), [pennylane-lightning](https://github.com/PennyLaneAI/pennylane-lightning), [qiskit-braket-provider](https://github.com/qiskit-community/qiskit-braket-provider), [scikit-learn](https://github.com/scikit-learn/scikit-learn), [scipy](https://github.com/scipy/scipy), [ipykernel](https://github.com/ipython/ipykernel), [keras](https://github.com/keras-team/keras), [pennylane-lightning[gpu]](https://github.com/PennyLaneAI/pennylane-lightning), [pydantic](https://github.com/pydantic/pydantic) and [typing-extensions](https://github.com/python/typing_extensions) to permit the latest version.

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

Updates `pytest` from 8.2.0 to 8.2.2
- [Release notes](https://github.com/pytest-dev/pytest/releases)
- [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst)
- [Commits](pytest-dev/pytest@8.2.0...8.2.2)

Updates `requests` to 2.32.3
- [Release notes](https://github.com/psf/requests/releases)
- [Changelog](https://github.com/psf/requests/blob/main/HISTORY.md)
- [Commits](psf/requests@v0.2.0...v2.32.3)

Updates `amazon-braket-sdk` from 1.80.0 to 1.83.0
- [Release notes](https://github.com/amazon-braket/amazon-braket-sdk-python/releases)
- [Changelog](https://github.com/amazon-braket/amazon-braket-sdk-python/blob/main/CHANGELOG.md)
- [Commits](amazon-braket/amazon-braket-sdk-python@v1.80.0...v1.83.0)

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

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

Updates `requests` from 2.31.0 to 2.32.3
- [Release notes](https://github.com/psf/requests/releases)
- [Changelog](https://github.com/psf/requests/blob/main/HISTORY.md)
- [Commits](psf/requests@v0.2.0...v2.32.3)

Updates `amazon-braket-default-simulator` from 1.23.1 to 1.26.0
- [Release notes](https://github.com/amazon-braket/amazon-braket-default-simulator-python/releases)
- [Changelog](https://github.com/amazon-braket/amazon-braket-default-simulator-python/blob/main/CHANGELOG.md)
- [Commits](amazon-braket/amazon-braket-default-simulator-python@v1.23.1...v1.26.0)

Updates `amazon-braket-pennylane-plugin` from 1.26.0 to 1.28.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.26.0...v1.28.0)

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

Updates `botocore` from 1.34.96 to 1.34.137
- [Changelog](https://github.com/boto/botocore/blob/develop/CHANGELOG.rst)
- [Commits](boto/botocore@1.34.96...1.34.137)

Updates `dask` from 2024.4.2 to 2024.6.2
- [Release notes](https://github.com/dask/dask/releases)
- [Changelog](https://github.com/dask/dask/blob/main/docs/release-procedure.md)
- [Commits](dask/dask@2024.4.2...2024.6.2)

Updates `matplotlib` from 3.8.4 to 3.9.0
- [Release notes](https://github.com/matplotlib/matplotlib/releases)
- [Commits](matplotlib/matplotlib@v3.8.4...v3.9.0)

Updates `numpy` from 1.26.4 to 2.0.0
- [Release notes](https://github.com/numpy/numpy/releases)
- [Changelog](https://github.com/numpy/numpy/blob/main/doc/RELEASE_WALKTHROUGH.rst)
- [Commits](numpy/numpy@v1.26.4...v2.0.0)

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

Updates `qiskit-braket-provider` from 0.2.0 to 0.4.0
- [Release notes](https://github.com/qiskit-community/qiskit-braket-provider/releases)
- [Commits](qiskit-community/qiskit-braket-provider@v0.2.0...v0.4.0)

Updates `scikit-learn` from 1.4.2 to 1.5.0
- [Release notes](https://github.com/scikit-learn/scikit-learn/releases)
- [Commits](scikit-learn/scikit-learn@1.4.2...1.5.0)

Updates `scipy` from 1.13.0 to 1.14.0
- [Release notes](https://github.com/scipy/scipy/releases)
- [Commits](scipy/scipy@v1.13.0...v1.14.0)

Updates `amazon-braket-sdk` from 1.80.0 to 1.83.0
- [Release notes](https://github.com/amazon-braket/amazon-braket-sdk-python/releases)
- [Changelog](https://github.com/amazon-braket/amazon-braket-sdk-python/blob/main/CHANGELOG.md)
- [Commits](amazon-braket/amazon-braket-sdk-python@v1.80.0...v1.83.0)

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

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

Updates `requests` from 2.31.0 to 2.32.3
- [Release notes](https://github.com/psf/requests/releases)
- [Changelog](https://github.com/psf/requests/blob/main/HISTORY.md)
- [Commits](psf/requests@v0.2.0...v2.32.3)

Updates `amazon-braket-default-simulator` from 1.23.1 to 1.26.0
- [Release notes](https://github.com/amazon-braket/amazon-braket-default-simulator-python/releases)
- [Changelog](https://github.com/amazon-braket/amazon-braket-default-simulator-python/blob/main/CHANGELOG.md)
- [Commits](amazon-braket/amazon-braket-default-simulator-python@v1.23.1...v1.26.0)

Updates `amazon-braket-pennylane-plugin` from 1.26.0 to 1.28.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.26.0...v1.28.0)

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

Updates `botocore` from 1.34.96 to 1.34.137
- [Changelog](https://github.com/boto/botocore/blob/develop/CHANGELOG.rst)
- [Commits](boto/botocore@1.34.96...1.34.137)

Updates `dask` from 2024.4.2 to 2024.6.2
- [Release notes](https://github.com/dask/dask/releases)
- [Changelog](https://github.com/dask/dask/blob/main/docs/release-procedure.md)
- [Commits](dask/dask@2024.4.2...2024.6.2)

Updates `matplotlib` from 3.8.4 to 3.9.0
- [Release notes](https://github.com/matplotlib/matplotlib/releases)
- [Commits](matplotlib/matplotlib@v3.8.4...v3.9.0)

Updates `numpy` from 1.26.4 to 2.0.0
- [Release notes](https://github.com/numpy/numpy/releases)
- [Changelog](https://github.com/numpy/numpy/blob/main/doc/RELEASE_WALKTHROUGH.rst)
- [Commits](numpy/numpy@v1.26.4...v2.0.0)

Updates `scikit-learn` from 1.4.2 to 1.5.0
- [Release notes](https://github.com/scikit-learn/scikit-learn/releases)
- [Commits](scikit-learn/scikit-learn@1.4.2...1.5.0)

Updates `scipy` from 1.13.0 to 1.14.0
- [Release notes](https://github.com/scipy/scipy/releases)
- [Commits](scipy/scipy@v1.13.0...v1.14.0)

Updates `ipykernel` from 6.29.4 to 6.29.5
- [Release notes](https://github.com/ipython/ipykernel/releases)
- [Changelog](https://github.com/ipython/ipykernel/blob/v6.29.5/CHANGELOG.md)
- [Commits](ipython/ipykernel@v6.29.4...v6.29.5)

Updates `keras` from 3.3.3 to 3.4.1
- [Release notes](https://github.com/keras-team/keras/releases)
- [Commits](keras-team/keras@v3.3.3...v3.4.1)

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

Updates `pydantic` from 2.7.1 to 2.8.0
- [Release notes](https://github.com/pydantic/pydantic/releases)
- [Changelog](https://github.com/pydantic/pydantic/blob/main/HISTORY.md)
- [Commits](pydantic/pydantic@v2.7.1...v2.8.0)

Updates `typing-extensions` from 4.11.0 to 4.12.2
- [Release notes](https://github.com/python/typing_extensions/releases)
- [Changelog](https://github.com/python/typing_extensions/blob/main/CHANGELOG.md)
- [Commits](python/typing_extensions@4.11.0...4.12.2)

Updates `amazon-braket-sdk` from 1.80.0 to 1.83.0
- [Release notes](https://github.com/amazon-braket/amazon-braket-sdk-python/releases)
- [Changelog](https://github.com/amazon-braket/amazon-braket-sdk-python/blob/main/CHANGELOG.md)
- [Commits](amazon-braket/amazon-braket-sdk-python@v1.80.0...v1.83.0)

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

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

Updates `requests` from 2.31.0 to 2.32.3
- [Release notes](https://github.com/psf/requests/releases)
- [Changelog](https://github.com/psf/requests/blob/main/HISTORY.md)
- [Commits](psf/requests@v0.2.0...v2.32.3)

Updates `amazon-braket-default-simulator` from 1.23.1 to 1.26.0
- [Release notes](https://github.com/amazon-braket/amazon-braket-default-simulator-python/releases)
- [Changelog](https://github.com/amazon-braket/amazon-braket-default-simulator-python/blob/main/CHANGELOG.md)
- [Commits](amazon-braket/amazon-braket-default-simulator-python@v1.23.1...v1.26.0)

Updates `amazon-braket-pennylane-plugin` from 1.26.0 to 1.28.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.26.0...v1.28.0)

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

Updates `botocore` from 1.34.96 to 1.34.137
- [Changelog](https://github.com/boto/botocore/blob/develop/CHANGELOG.rst)
- [Commits](boto/botocore@1.34.96...1.34.137)

Updates `dask` from 2024.4.2 to 2024.6.2
- [Release notes](https://github.com/dask/dask/releases)
- [Changelog](https://github.com/dask/dask/blob/main/docs/release-procedure.md)
- [Commits](dask/dask@2024.4.2...2024.6.2)

Updates `matplotlib` from 3.8.4 to 3.9.0
- [Release notes](https://github.com/matplotlib/matplotlib/releases)
- [Commits](matplotlib/matplotlib@v3.8.4...v3.9.0)

Updates `numpy` from 1.26.4 to 2.0.0
- [Release notes](https://github.com/numpy/numpy/releases)
- [Changelog](https://github.com/numpy/numpy/blob/main/doc/RELEASE_WALKTHROUGH.rst)
- [Commits](numpy/numpy@v1.26.4...v2.0.0)

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

Updates `scikit-learn` from 1.4.2 to 1.5.0
- [Release notes](https://github.com/scikit-learn/scikit-learn/releases)
- [Commits](scikit-learn/scikit-learn@1.4.2...1.5.0)

Updates `scipy` from 1.13.0 to 1.14.0
- [Release notes](https://github.com/scipy/scipy/releases)
- [Commits](scipy/scipy@v1.13.0...v1.14.0)

Updates `ipykernel` from 6.29.4 to 6.29.5
- [Release notes](https://github.com/ipython/ipykernel/releases)
- [Changelog](https://github.com/ipython/ipykernel/blob/v6.29.5/CHANGELOG.md)
- [Commits](ipython/ipykernel@v6.29.4...v6.29.5)

Updates `keras` from 2.15.0 to 3.4.1
- [Release notes](https://github.com/keras-team/keras/releases)
- [Commits](keras-team/keras@v3.3.3...v3.4.1)

Updates `pydantic` from 2.7.1 to 2.8.0
- [Release notes](https://github.com/pydantic/pydantic/releases)
- [Changelog](https://github.com/pydantic/pydantic/blob/main/HISTORY.md)
- [Commits](pydantic/pydantic@v2.7.1...v2.8.0)

Updates `typing-extensions` from 4.11.0 to 4.12.2
- [Release notes](https://github.com/python/typing_extensions/releases)
- [Changelog](https://github.com/python/typing_extensions/blob/main/CHANGELOG.md)
- [Commits](python/typing_extensions@4.11.0...4.12.2)

---
updated-dependencies:
- dependency-name: boto3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: pytest
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: requests
  dependency-type: direct:production
  dependency-group: dev-dependencies
- dependency-name: amazon-braket-sdk
  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: pennylane
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: requests
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: amazon-braket-default-simulator
  dependency-type: direct:production
  update-type: version-update:semver-minor
  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: awscli
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: botocore
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: dask
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: matplotlib
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: numpy
  dependency-type: direct:production
  update-type: version-update:semver-major
  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-braket-provider
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: scikit-learn
  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: amazon-braket-sdk
  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: pennylane
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: requests
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: amazon-braket-default-simulator
  dependency-type: direct:production
  update-type: version-update:semver-minor
  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: awscli
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: botocore
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: dask
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: matplotlib
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: numpy
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: scikit-learn
  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: ipykernel
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: keras
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: pennylane-lightning[gpu]
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: pydantic
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: typing-extensions
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: amazon-braket-sdk
  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: pennylane
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: requests
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: amazon-braket-default-simulator
  dependency-type: direct:production
  update-type: version-update:semver-minor
  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: awscli
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: botocore
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: dask
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: matplotlib
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: numpy
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: pennylane-lightning
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: scikit-learn
  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: ipykernel
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: keras
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: pydantic
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: typing-extensions
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Jul 2, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Jul 8, 2024

Superseded by #276.

@dependabot dependabot bot closed this Jul 8, 2024
@dependabot dependabot bot deleted the dependabot/pip/dev-dependencies-b1abac62f6 branch July 8, 2024 23:40
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