Skip to content

Commit 38345a0

Browse files
committed
a
1 parent 64f7ca9 commit 38345a0

File tree

3 files changed

+12
-0
lines changed

3 files changed

+12
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
22

3+
/dist
4+
35
# dependencies
46
/node_modules
57
/.pnp

requirements-dev.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
gitpython>=3.1.30

utils/get_docs.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import git
2+
import os
3+
4+
PYGAME_GIT_URL = "https://github.com/pygame-community/pygame-ce.git"
5+
6+
# git.Repo.clone_from(PYGAME_GIT_URL, "dist")
7+
8+
os.chdir(os.path.join(os.getcwd(), "pygame"))
9+
os.system("python setup.py docs")

0 commit comments

Comments
 (0)