Skip to content

Commit 31f585d

Browse files
committed
Fix tests
Signed-off-by: Tushar Goel <tushar.goel.dav@gmail.com>
1 parent 48beedd commit 31f585d

5 files changed

Lines changed: 22 additions & 26 deletions

tests/data/azure-devops.req-310-expected.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1286,8 +1286,7 @@
12861286
{
12871287
"package": "pkg:pypi/cryptography@48.0.0",
12881288
"dependencies": [
1289-
"pkg:pypi/cffi@2.0.0",
1290-
"pkg:pypi/typing-extensions@4.15.0"
1289+
"pkg:pypi/cffi@2.0.0"
12911290
]
12921291
},
12931292
{

tests/data/azure-devops.req-312-expected.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1286,8 +1286,7 @@
12861286
{
12871287
"package": "pkg:pypi/cryptography@48.0.0",
12881288
"dependencies": [
1289-
"pkg:pypi/cffi@2.0.0",
1290-
"pkg:pypi/typing-extensions@4.15.0"
1289+
"pkg:pypi/cffi@2.0.0"
12911290
]
12921291
},
12931292
{

tests/data/azure-devops.req-313-expected.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1286,8 +1286,7 @@
12861286
{
12871287
"package": "pkg:pypi/cryptography@48.0.0",
12881288
"dependencies": [
1289-
"pkg:pypi/cffi@2.0.0",
1290-
"pkg:pypi/typing-extensions@4.15.0"
1289+
"pkg:pypi/cffi@2.0.0"
12911290
]
12921291
},
12931292
{

tests/data/azure-devops.req-314-expected.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1286,8 +1286,7 @@
12861286
{
12871287
"package": "pkg:pypi/cryptography@48.0.0",
12881288
"dependencies": [
1289-
"pkg:pypi/cffi@2.0.0",
1290-
"pkg:pypi/typing-extensions@4.15.0"
1289+
"pkg:pypi/cffi@2.0.0"
12911290
]
12921291
},
12931292
{

tests/data/azure-devops.req-38-expected.json

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -577,17 +577,17 @@
577577
"type": "pypi",
578578
"namespace": null,
579579
"name": "cryptography",
580-
"version": "46.0.0",
580+
"version": "45.0.7",
581581
"qualifiers": {},
582582
"subpath": null,
583583
"primary_language": "Python",
584-
"description": "cryptography is a package which provides cryptographic recipes and primitives to Python developers.\npyca/cryptography\n=================\n\n.. image:: https://img.shields.io/pypi/v/cryptography.svg\n :target: https://pypi.org/project/cryptography/\n :alt: Latest Version\n\n.. image:: https://readthedocs.org/projects/cryptography/badge/?version=latest\n :target: https://cryptography.io\n :alt: Latest Docs\n\n.. image:: https://github.com/pyca/cryptography/actions/workflows/ci.yml/badge.svg\n :target: https://github.com/pyca/cryptography/actions/workflows/ci.yml?query=branch%3Amain\n\n``cryptography`` is a package which provides cryptographic recipes and\nprimitives to Python developers. Our goal is for it to be your \"cryptographic\nstandard library\". It supports Python 3.8+ and PyPy3 7.3.11+.\n\n``cryptography`` includes both high level recipes and low level interfaces to\ncommon cryptographic algorithms such as symmetric ciphers, message digests, and\nkey derivation functions. For example, to encrypt something with\n``cryptography``'s high level symmetric encryption recipe:\n\n.. code-block:: pycon\n\n >>> from cryptography.fernet import Fernet\n >>> # Put this somewhere safe!\n >>> key = Fernet.generate_key()\n >>> f = Fernet(key)\n >>> token = f.encrypt(b\"A really secret message. Not for prying eyes.\")\n >>> token\n b'...'\n >>> f.decrypt(token)\n b'A really secret message. Not for prying eyes.'\n\nYou can find more information in the `documentation`_.\n\nYou can install ``cryptography`` with:\n\n.. code-block:: console\n\n $ pip install cryptography\n\nFor full details see `the installation documentation`_.\n\nDiscussion\n~~~~~~~~~~\n\nIf you run into bugs, you can file them in our `issue tracker`_.\n\nWe maintain a `cryptography-dev`_ mailing list for development discussion.\n\nYou can also join ``#pyca`` on ``irc.libera.chat`` to ask questions or get\ninvolved.\n\nSecurity\n~~~~~~~~\n\nNeed to report a security issue? Please consult our `security reporting`_\ndocumentation.\n\n\n.. _`documentation`: https://cryptography.io/\n.. _`the installation documentation`: https://cryptography.io/en/latest/installation/\n.. _`issue tracker`: https://github.com/pyca/cryptography/issues\n.. _`cryptography-dev`: https://mail.python.org/mailman/listinfo/cryptography-dev\n.. _`security reporting`: https://cryptography.io/en/latest/security/",
585-
"release_date": "2025-09-16T21:07:03",
584+
"description": "cryptography is a package which provides cryptographic recipes and primitives to Python developers.\npyca/cryptography\n=================\n\n.. image:: https://img.shields.io/pypi/v/cryptography.svg\n :target: https://pypi.org/project/cryptography/\n :alt: Latest Version\n\n.. image:: https://readthedocs.org/projects/cryptography/badge/?version=latest\n :target: https://cryptography.io\n :alt: Latest Docs\n\n.. image:: https://github.com/pyca/cryptography/workflows/CI/badge.svg?branch=main\n :target: https://github.com/pyca/cryptography/actions?query=workflow%3ACI+branch%3Amain\n\n\n``cryptography`` is a package which provides cryptographic recipes and\nprimitives to Python developers. Our goal is for it to be your \"cryptographic\nstandard library\". It supports Python 3.7+ and PyPy3 7.3.11+.\n\n``cryptography`` includes both high level recipes and low level interfaces to\ncommon cryptographic algorithms such as symmetric ciphers, message digests, and\nkey derivation functions. For example, to encrypt something with\n``cryptography``'s high level symmetric encryption recipe:\n\n.. code-block:: pycon\n\n >>> from cryptography.fernet import Fernet\n >>> # Put this somewhere safe!\n >>> key = Fernet.generate_key()\n >>> f = Fernet(key)\n >>> token = f.encrypt(b\"A really secret message. Not for prying eyes.\")\n >>> token\n b'...'\n >>> f.decrypt(token)\n b'A really secret message. Not for prying eyes.'\n\nYou can find more information in the `documentation`_.\n\nYou can install ``cryptography`` with:\n\n.. code-block:: console\n\n $ pip install cryptography\n\nFor full details see `the installation documentation`_.\n\nDiscussion\n~~~~~~~~~~\n\nIf you run into bugs, you can file them in our `issue tracker`_.\n\nWe maintain a `cryptography-dev`_ mailing list for development discussion.\n\nYou can also join ``#pyca`` on ``irc.libera.chat`` to ask questions or get\ninvolved.\n\nSecurity\n~~~~~~~~\n\nNeed to report a security issue? Please consult our `security reporting`_\ndocumentation.\n\n\n.. _`documentation`: https://cryptography.io/\n.. _`the installation documentation`: https://cryptography.io/en/latest/installation/\n.. _`issue tracker`: https://github.com/pyca/cryptography/issues\n.. _`cryptography-dev`: https://mail.python.org/mailman/listinfo/cryptography-dev\n.. _`security reporting`: https://cryptography.io/en/latest/security/",
585+
"release_date": "2025-09-01T11:14:24",
586586
"parties": [
587587
{
588588
"type": "person",
589589
"role": "author",
590-
"name": null,
590+
"name": "The cryptography developers <cryptography-dev@python.org>",
591591
"email": "The Python Cryptographic Authority and individual contributors <cryptography-dev@python.org>",
592592
"url": null
593593
}
@@ -608,37 +608,38 @@
608608
"Programming Language :: Python :: 3.11",
609609
"Programming Language :: Python :: 3.12",
610610
"Programming Language :: Python :: 3.13",
611-
"Programming Language :: Python :: 3.14",
611+
"Programming Language :: Python :: 3.7",
612612
"Programming Language :: Python :: 3.8",
613613
"Programming Language :: Python :: 3.9",
614-
"Programming Language :: Python :: Free Threading :: 3 - Stable",
615614
"Programming Language :: Python :: Implementation :: CPython",
616615
"Programming Language :: Python :: Implementation :: PyPy",
617616
"Topic :: Security :: Cryptography"
618617
],
619618
"homepage_url": null,
620-
"download_url": "https://files.pythonhosted.org/packages/da/94/f1c1f30110c05fa5247bf460b17acfd52fa3f5c77e94ba19cff8957dc5e6/cryptography-46.0.0-cp38-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
621-
"size": 4562561,
619+
"download_url": "https://files.pythonhosted.org/packages/eb/ac/59b7790b4ccaed739fc44775ce4645c9b8ce54cbec53edf16c74fd80cb2b/cryptography-45.0.7-cp37-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
620+
"size": 4423075,
622621
"sha1": null,
623-
"md5": "4fe77bef21236be92883b98ea2b89580",
624-
"sha256": "c3cd09b1490c1509bf3892bde9cef729795fae4a2fee0621f19be3321beca7e4",
622+
"md5": "d7c4a989694c8af7d27560ff4125516f",
623+
"sha256": "3994c809c17fc570c2af12c9b840d7cea85a9fd3e5c0e0491f4fa3c029216d59",
625624
"sha512": null,
626625
"bug_tracking_url": null,
627626
"code_view_url": null,
628627
"vcs_url": null,
629628
"copyright": null,
630-
"license_expression": "Apache-2.0 OR BSD-3-Clause",
631-
"declared_license": {},
629+
"license_expression": null,
630+
"declared_license": {
631+
"license": "Apache-2.0 OR BSD-3-Clause"
632+
},
632633
"notice_text": null,
633634
"source_packages": [],
634635
"file_references": [],
635636
"extra_data": {},
636637
"dependencies": [],
637638
"repository_homepage_url": null,
638639
"repository_download_url": null,
639-
"api_data_url": "https://pypi.org/pypi/cryptography/46.0.0/json",
640+
"api_data_url": "https://pypi.org/pypi/cryptography/45.0.7/json",
640641
"datasource_id": null,
641-
"purl": "pkg:pypi/cryptography@46.0.0"
642+
"purl": "pkg:pypi/cryptography@45.0.7"
642643
},
643644
{
644645
"type": "pypi",
@@ -1328,7 +1329,7 @@
13281329
"package": "pkg:pypi/azure-storage-blob@12.26.0",
13291330
"dependencies": [
13301331
"pkg:pypi/azure-core@1.33.0",
1331-
"pkg:pypi/cryptography@46.0.0",
1332+
"pkg:pypi/cryptography@45.0.7",
13321333
"pkg:pypi/isodate@0.7.2",
13331334
"pkg:pypi/typing-extensions@4.13.2"
13341335
]
@@ -1352,10 +1353,9 @@
13521353
"dependencies": []
13531354
},
13541355
{
1355-
"package": "pkg:pypi/cryptography@46.0.0",
1356+
"package": "pkg:pypi/cryptography@45.0.7",
13561357
"dependencies": [
1357-
"pkg:pypi/cffi@1.17.1",
1358-
"pkg:pypi/typing-extensions@4.13.2"
1358+
"pkg:pypi/cffi@1.17.1"
13591359
]
13601360
},
13611361
{

0 commit comments

Comments
 (0)