do not sort keys in lilac.yaml

This commit is contained in:
sukanka 2022-11-04 12:31:15 +08:00 committed by GitHub
parent de9b2c68ad
commit 1be7fc92e0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -68,7 +68,7 @@ def archive_pkg_yaml(bioconductor_version=3.15, yaml_file="lilac.yaml"):
docs['update_on'][url_idx]['url'] = archive_url
with open(yaml_file, 'w') as f:
yaml.dump(docs, f)
yaml.dump(docs, f,sort_keys=False)
def archive_pkg_pkgbuild(bioconductor_version=3.15, _pkgname="_pkgname"):