Skip to content

Commit a256dcc

Browse files
committed
fix version typo in min version yaml and update min version script
1 parent 4f95fb2 commit a256dcc

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

ci/deps/actions-38-minimum_versions.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,4 +57,4 @@ dependencies:
5757
- zstandard=0.15.2
5858

5959
- pip:
60-
- PyQt5>=5.15.1
60+
- PyQt5==5.15.1

scripts/validate_min_versions_in_sync.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ def get_versions_from_ci(content: list[str]) -> tuple[dict[str, str], dict[str,
6363
elif "pip" in line:
6464
continue
6565
elif seen_required and line.strip():
66-
if ">" in line:
67-
package, version = line.strip().split(">=")
66+
if "==" in line:
67+
package, version = line.strip().split("==")
6868

6969
else:
7070
package, version = line.strip().split("=")

0 commit comments

Comments
 (0)