From 2f4628063ceae3069ba74d28c7c6b0c46b45a3ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Dudfield?= Date: Mon, 6 Aug 2018 13:32:04 +0200 Subject: [PATCH] pygame docs are now made with 'setup.py docs'. --- pygameweb/builds/update_docs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pygameweb/builds/update_docs.py b/pygameweb/builds/update_docs.py index 1c01562..68f3404 100644 --- a/pygameweb/builds/update_docs.py +++ b/pygameweb/builds/update_docs.py @@ -27,6 +27,6 @@ def update_docs(): run(['touch', str(update_file)], cwd=cwd) run(['git', 'pull'], cwd=cwd) - run([str(venv_python.absolute()), 'makeref.py'], cwd=cwd) + run([str(venv_python.absolute()), 'setup.py', 'docs'], cwd=cwd) run(['rsync', '-va', '--delete', 'docs/', str(docs_path.absolute())], cwd=cwd)