Skip to content

Commit 2d428ed

Browse files
committed
bump
Signed-off-by: Jan Kowalleck <[email protected]>
1 parent a704214 commit 2d428ed

16 files changed

+1883
-1170
lines changed

tests/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@
2828

2929
from 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')
3232
if 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')
3636
if INIT_TESTBEDS:
3737
print('!!! WILL INIT TESTBEDS !!!', file=sys.stderr)
3838

tests/_data/infiles/environment/with-extras/init.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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',
Lines changed: 17 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,30 @@
11
arrow==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
55
defusedxml==0.7.1
66
fqdn==1.5.1
7-
idna==3.10
7+
idna==3.11
88
importlib_resources==6.4.5
99
isoduration==20.11.0
1010
jsonpointer==3.0.0
11-
jsonschema==4.23.0
11+
jsonschema==4.25.1
1212
jsonschema-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
1617
pkgutil_resolve_name==1.3.10
17-
py-serializable==1.1.2
18+
py-serializable==2.1.0
1819
python-dateutil==2.9.0.post0
19-
referencing==0.35.1
20+
referencing==0.37.0
2021
rfc3339-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
2426
sortedcontainers==2.4.0
25-
types-python-dateutil==2.9.0.20241003
27+
types-python-dateutil==2.9.0.20251008
2628
uri-template==1.3.0
27-
webcolors==24.8.0
29+
webcolors==24.11.1
2830
zipp==3.20.2

tests/_data/infiles/environment/with-license-pep639/init.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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

tests/_data/snapshots/environment/plain_with-extras_1.0.xml.bin

Lines changed: 46 additions & 32 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)