Prepare 3.0.0 release (#318)

* Prepare 3.0.0 release.

* Install using ansible-galaxy via git instead of cloning directly.
This commit is contained in:
Felix Fontein 2024-10-18 21:01:46 +02:00 committed by GitHub
parent 26e3aa3e0a
commit e18de43407
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
12 changed files with 37 additions and 465 deletions

View file

@ -12,7 +12,7 @@ import subprocess
def main():
"""Main entry point."""
p = subprocess.run(['./update-docs.py'], check=False)
p = subprocess.run([sys.executable, 'update-docs.py'], check=False)
if p.returncode not in (0, 1):
print('{0}:0:0: unexpected return code {1}'.format(sys.argv[0], p.returncode))