File tree 5 files changed +25
-11
lines changed
python-with-workflows/my-source
python-without-workflows/src
5 files changed +25
-11
lines changed Original file line number Diff line number Diff line change 3
3
## Python
4
4
| Dependency | Version | License |
5
5
| :-----------| :-------:| --------:|
6
- | certifi| 2024.6.2 | Mozilla Public License 2.0|
6
+ | certifi| 2024.7.4 | Mozilla Public License 2.0|
7
7
| charset-normalizer| 3.3.2| MIT|
8
8
| gitdb| 4.0.11| BSD|
9
9
| GitPython| 3.1.43| New BSD|
12
12
| requests| 2.32.3| Apache 2.0|
13
13
| smmap| 5.0.1| BSD|
14
14
| str2bool| 1.1| BSD|
15
- | types-PyYAML| 6.0.12.20240311 | Apache 2.0|
16
- | types-requests| 2.32.0.20240622 | Apache 2.0|
17
- | types-setuptools| 70 .1.0.20240625 | Apache 2.0|
15
+ | types-PyYAML| 6.0.12.20240724 | Apache 2.0|
16
+ | types-requests| 2.32.0.20240712 | Apache 2.0|
17
+ | types-setuptools| 71 .1.0.20240726 | Apache 2.0|
18
18
| urllib3| 2.2.2| MIT|
19
19
## Workflows
20
20
| Dependency | Version | License |
Original file line number Diff line number Diff line change @@ -25,10 +25,24 @@ def test_execution_python():
25
25
pip_requirements_path = "requirements.txt" ,
26
26
)
27
27
28
- assert len (result ) == 2
29
- assert result [0 ].name == "grpcio"
30
- assert result [0 ].version == "1.53.0"
31
- assert result [0 ].licenses == ["Apache 2.0" ]
28
+ # Two explicit plus two implicit
29
+ assert len (result ) == 4
30
+
31
+ # List in alphabetical order
32
+ # idna required by yarl
33
+ assert result [0 ].name == "idna"
34
+ assert result [0 ].version == "3.7"
35
+ assert result [0 ].licenses == ["BSD" ]
36
+
37
+ #multidict required by yarl
38
+ assert result [1 ].name == "multidict"
39
+ assert result [1 ].version == "6.0.5"
40
+ assert result [1 ].licenses == ["Apache 2.0" ]
41
+
32
42
assert result [1 ].name == "six"
33
43
assert result [1 ].version == "1.16.0"
34
44
assert result [1 ].licenses == ["MIT" ]
45
+
46
+ assert result [0 ].name == "yarl"
47
+ assert result [0 ].version == "1.9.4"
48
+ assert result [0 ].licenses == ["Apache 2.0" ]
Original file line number Diff line number Diff line change 1
- grpcio == 1.53.0
1
+ yarl == 1.9.4
2
2
coverage2clover
3
3
coveragepy-lcov
Original file line number Diff line number Diff line change 1
- grpcio == 1.53.0
1
+ yarl == 1.9.4
2
2
six == 1.16.0
Original file line number Diff line number Diff line change 1
- grpcio == 1.53.0
1
+ yarl == 1.9.4
2
2
six == 1.16.0
You can’t perform that action at this time.
0 commit comments