[php] Fix sorting
This commit is contained in:
@@ -37,7 +37,7 @@ with open("releases/php.json", "w") as f:
|
|||||||
json.dumps(
|
json.dumps(
|
||||||
dict(sorted(
|
dict(sorted(
|
||||||
releases.items(),
|
releases.items(),
|
||||||
key=lambda x: list(map(str, x[0].split(".")))
|
key=lambda x: list(map(int, x[0].split(".")))
|
||||||
)),
|
)),
|
||||||
indent=2,
|
indent=2,
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user