File tree Expand file tree Collapse file tree 16 files changed +1883
-1170
lines changed
Expand file tree Collapse file tree 16 files changed +1883
-1170
lines changed Original file line number Diff line number Diff line change 2828
2929from cyclonedx_py import __version__ as __this_version
3030
31- RECREATE_SNAPSHOTS = '1' == getenv ('CDX_TEST_RECREATE_SNAPSHOTS' )
31+ RECREATE_SNAPSHOTS = True # '1' == getenv('CDX_TEST_RECREATE_SNAPSHOTS')
3232if RECREATE_SNAPSHOTS :
3333 print ('!!! WILL RECREATE ALL SNAPSHOTS !!!' , file = sys .stderr )
3434
35- INIT_TESTBEDS = '1' != getenv ('CDX_TEST_SKIP_INIT_TESTBEDS' )
35+ INIT_TESTBEDS = True # '1' != getenv('CDX_TEST_SKIP_INIT_TESTBEDS')
3636if INIT_TESTBEDS :
3737 print ('!!! WILL INIT TESTBEDS !!!' , file = sys .stderr )
3838
Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ def main() -> None:
6363 ).create (env_dir )
6464
6565 pip_install (
66- 'cyclonedx-python-lib[xml-validation,json-validation]' ,
66+ 'cyclonedx-python-lib[xml-validation,json-validation]==11.2 ' ,
6767 # additionals for reproducibility foo
6868 'importlib-resources>=1.4.0' ,
6969 'pkgutil-resolve-name>=1.3.10' ,
Original file line number Diff line number Diff line change 11arrow==1.3.0
2- attrs==24.2 .0
3- boolean.py==4 .0
4- cyclonedx-python-lib==8 .2.0
2+ attrs==25.4 .0
3+ boolean.py==5 .0
4+ cyclonedx-python-lib==11 .2.0
55defusedxml==0.7.1
66fqdn==1.5.1
7- idna==3.10
7+ idna==3.11
88importlib_resources==6.4.5
99isoduration==20.11.0
1010jsonpointer==3.0.0
11- jsonschema==4.23.0
11+ jsonschema==4.25.1
1212jsonschema-specifications==2023.3.6
13- license-expression==30.3.1
14- lxml==5.3.0
15- packageurl-python==0.16.0
13+ lark==1.3.0
14+ license-expression==30.4.4
15+ lxml==6.0.2
16+ packageurl-python==0.17.5
1617pkgutil_resolve_name==1.3.10
17- py-serializable==1 .1.2
18+ py-serializable==2 .1.0
1819python-dateutil==2.9.0.post0
19- referencing==0.35.1
20+ referencing==0.37.0
2021rfc3339-validator==0.1.4
21- rfc3987==1.3.8
22- rpds-py==0.20.0
23- six==1.16.0
22+ rfc3986-validator==0.1.1
23+ rfc3987-syntax==1.1.0
24+ rpds-py==0.27.1
25+ six==1.17.0
2426sortedcontainers==2.4.0
25- types-python-dateutil==2.9.0.20241003
27+ types-python-dateutil==2.9.0.20251008
2628uri-template==1.3.0
27- webcolors==24.8.0
29+ webcolors==24.11.1
2830zipp==3.20.2
Original file line number Diff line number Diff line change @@ -65,11 +65,11 @@ def main() -> None:
6565 pip_install (
6666 '--no-dependencies' ,
6767 # with License-Expression
68- 'attrs' ,
68+ 'attrs==23.2.0 ' ,
6969 # with License-File
70- 'boolean.py' ,
71- 'jsonpointer' ,
72- 'license_expression' ,
70+ 'boolean.py==4.0 ' ,
71+ 'jsonpointer==2.4 ' ,
72+ 'license_expression==30.3.0 ' ,
7373 'chardet==5.2.0' , # https://github.com/CycloneDX/cyclonedx-python/issues/931
7474 # with expression-like License AND License-File
7575 'cryptography==43.0.1' , # https://github.com/CycloneDX/cyclonedx-python/issues/826
You can’t perform that action at this time.
0 commit comments