Skip to content

Commit 5af655f

Browse files
Fix flaky online tests
Signed-off-by: Ayan Sinha Mahapatra <[email protected]>
1 parent 127d353 commit 5af655f

File tree

5 files changed

+26
-22
lines changed

5 files changed

+26
-22
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1287,7 +1287,8 @@
12871287
{
12881288
"package": "pkg:pypi/[email protected]",
12891289
"dependencies": [
1290-
"pkg:pypi/[email protected]"
1290+
"pkg:pypi/[email protected]",
1291+
"pkg:pypi/[email protected]"
12911292
]
12921293
},
12931294
{

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1287,7 +1287,8 @@
12871287
{
12881288
"package": "pkg:pypi/[email protected]",
12891289
"dependencies": [
1290-
"pkg:pypi/[email protected]"
1290+
"pkg:pypi/[email protected]",
1291+
"pkg:pypi/[email protected]"
12911292
]
12921293
},
12931294
{

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1287,7 +1287,8 @@
12871287
{
12881288
"package": "pkg:pypi/[email protected]",
12891289
"dependencies": [
1290-
"pkg:pypi/[email protected]"
1290+
"pkg:pypi/[email protected]",
1291+
"pkg:pypi/[email protected]"
12911292
]
12921293
},
12931294
{

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1287,7 +1287,8 @@
12871287
{
12881288
"package": "pkg:pypi/[email protected]",
12891289
"dependencies": [
1290-
"pkg:pypi/[email protected]"
1290+
"pkg:pypi/[email protected]",
1291+
"pkg:pypi/[email protected]"
12911292
]
12921293
},
12931294
{

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

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -576,17 +576,17 @@
576576
"type": "pypi",
577577
"namespace": null,
578578
"name": "cryptography",
579-
"version": "45.0.7",
579+
"version": "46.0.0",
580580
"qualifiers": {},
581581
"subpath": null,
582582
"primary_language": "Python",
583-
"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/",
584-
"release_date": "2025-09-01T11:14:24",
583+
"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/",
584+
"release_date": "2025-09-16T21:07:03",
585585
"parties": [
586586
{
587587
"type": "person",
588588
"role": "author",
589-
"name": "The cryptography developers <[email protected]>",
589+
"name": null,
590590
"email": "The Python Cryptographic Authority and individual contributors <[email protected]>",
591591
"url": null
592592
}
@@ -607,38 +607,37 @@
607607
"Programming Language :: Python :: 3.11",
608608
"Programming Language :: Python :: 3.12",
609609
"Programming Language :: Python :: 3.13",
610-
"Programming Language :: Python :: 3.7",
610+
"Programming Language :: Python :: 3.14",
611611
"Programming Language :: Python :: 3.8",
612612
"Programming Language :: Python :: 3.9",
613+
"Programming Language :: Python :: Free Threading :: 3 - Stable",
613614
"Programming Language :: Python :: Implementation :: CPython",
614615
"Programming Language :: Python :: Implementation :: PyPy",
615616
"Topic :: Security :: Cryptography"
616617
],
617618
"homepage_url": null,
618-
"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",
619-
"size": 4423075,
619+
"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",
620+
"size": 4562561,
620621
"sha1": null,
621-
"md5": "d7c4a989694c8af7d27560ff4125516f",
622-
"sha256": "3994c809c17fc570c2af12c9b840d7cea85a9fd3e5c0e0491f4fa3c029216d59",
622+
"md5": "4fe77bef21236be92883b98ea2b89580",
623+
"sha256": "c3cd09b1490c1509bf3892bde9cef729795fae4a2fee0621f19be3321beca7e4",
623624
"sha512": null,
624625
"bug_tracking_url": null,
625626
"code_view_url": null,
626627
"vcs_url": null,
627628
"copyright": null,
628-
"license_expression": null,
629-
"declared_license": {
630-
"license": "Apache-2.0 OR BSD-3-Clause"
631-
},
629+
"license_expression": "Apache-2.0 OR BSD-3-Clause",
630+
"declared_license": {},
632631
"notice_text": null,
633632
"source_packages": [],
634633
"file_references": [],
635634
"extra_data": {},
636635
"dependencies": [],
637636
"repository_homepage_url": null,
638637
"repository_download_url": null,
639-
"api_data_url": "https://pypi.org/pypi/cryptography/45.0.7/json",
638+
"api_data_url": "https://pypi.org/pypi/cryptography/46.0.0/json",
640639
"datasource_id": null,
641-
"purl": "pkg:pypi/cryptography@45.0.7"
640+
"purl": "pkg:pypi/cryptography@46.0.0"
642641
},
643642
{
644643
"type": "pypi",
@@ -1328,7 +1327,7 @@
13281327
"package": "pkg:pypi/[email protected]",
13291328
"dependencies": [
13301329
"pkg:pypi/[email protected]",
1331-
"pkg:pypi/cryptography@45.0.7",
1330+
"pkg:pypi/cryptography@46.0.0",
13321331
"pkg:pypi/[email protected]",
13331332
"pkg:pypi/[email protected]"
13341333
]
@@ -1352,9 +1351,10 @@
13521351
"dependencies": []
13531352
},
13541353
{
1355-
"package": "pkg:pypi/cryptography@45.0.7",
1354+
"package": "pkg:pypi/cryptography@46.0.0",
13561355
"dependencies": [
1357-
"pkg:pypi/[email protected]"
1356+
"pkg:pypi/[email protected]",
1357+
"pkg:pypi/[email protected]"
13581358
]
13591359
},
13601360
{

0 commit comments

Comments
 (0)