Skip to content

Commit 06b83d8

Browse files
committed
Fix charset-normalizer CI test failure by pinning non-deterministic dependency versions in verification test data
1 parent e72f08c commit 06b83d8

4 files changed

Lines changed: 11 additions & 11 deletions

File tree

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
azure.cli
22
azureml-core
3-
requests
3+
requests==2.32.3
44
packaging==20.9
5-
setuptools>=65.5.1
5+
setuptools==78.1.0

test/Microsoft.ComponentDetection.VerificationTests/resources/pip/pytestresultpkg/python/setup.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ def read(fname):
77
return codecs.open(file_path, encoding='utf-8').read()
88

99
setup(
10-
name='pytest_pyresultreport',
10+
name='pytest_pyresultreport',
1111
version='0.1.0',
1212
author='CG',
13-
package_dir = {"":"src"},
14-
packages = find_packages(where="src"),
13+
package_dir = {"":"src"},
14+
packages = find_packages(where="src"),
1515
maintainer='CG',
1616
description='plugin to modify pytest reports',
1717
python_requires='>=3.7',
18-
install_requires=['pytest>=3.7'],
18+
install_requires=['pytest==8.3.4'],
1919
classifiers=[
2020
'Framework :: Pytest',
2121
'Intended Audience :: Developers',
@@ -29,8 +29,8 @@ def read(fname):
2929
'Operating System :: OS Independent',
3030
],
3131
entry_points={
32-
'pytest11': [
32+
'pytest11': [
3333
'py_result_report = pytest_pyresultreport.plugin',
3434
],
3535
},
36-
)
36+
)

test/Microsoft.ComponentDetection.VerificationTests/resources/pip/requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
absl-py==2.2.2
22
astunparse==1.6.3
33
certifi==2025.1.31
4-
charset-normalizer==3.4.1
4+
charset-normalizer==3.4.3
55
flatbuffers==25.2.10
66
gast==0.6.0
77
google-pasta==0.2.0
@@ -34,4 +34,4 @@ typing_extensions==4.13.1
3434
urllib3==2.3.0
3535
Werkzeug==3.1.3
3636
wheel==0.45.1
37-
wrapt==1.17.2
37+
wrapt==1.17.2
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
requests [socks] >= 2.32.3, == 2.32.* ; python_version > "2.7"
1+
requests [socks] == 2.32.3 ; python_version > "2.7"

0 commit comments

Comments
 (0)