Skip to content
This repository was archived by the owner on Oct 12, 2022. It is now read-only.

Commit 5c62ad2

Browse files
committed
Fix scripts naming (no longer containing python version) in INTERNAL.md documentation
1 parent 7dbad9d commit 5c62ad2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

INTERNALS.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Maintaining these scripts
22

3-
The `3.7.sh` script downloads some source code, then passes control to `docker`
4-
which runs `3.7.Dockerfile`. This configures dependencies, patches Python, and
3+
The `main.sh` script downloads some source code, then passes control to `docker`
4+
which runs `python.Dockerfile`. This configures dependencies, patches Python, and
55
does the build.
66

77
The shell script does nearly all of the downloading up-front. This allows the
@@ -10,13 +10,13 @@ The Dockerfile does include some `apt-get` calls, which I consider an
1010
acceptable compromise of this design goal.
1111

1212
The Dockerfile patches the source code using `sed`, a custom Python script
13-
called `3.7.ignore_some_tests.py`, and patches that we apply using `quilt`.
13+
called `ignore_some_tests.py`, and patches that we apply using `quilt`.
1414

1515
It uses `sed` when making changes that I do not intend to send upstream. It is
1616
easy to use `sed` to make one-line changes to various files, and these changes
1717
are resilient to the lines moving around slightly.
1818

19-
The `3.7.ignore_some_tests.py` makes a lot of changes to the Python test suite,
19+
The `ignore_some_tests.py` makes a lot of changes to the Python test suite,
2020
focusing on removing tests that do not make sense within the context of an
2121
Android app. Most of these relate to disabling the use of Python subprocesses
2222
to run parts of the test suite. Launching subprocesses works properly within an

0 commit comments

Comments
 (0)