Skip to content

Commit d314041

Browse files
committed
Rename build.py to prevent name conflict with the build package
1 parent 6ec3b7f commit d314041

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

.github/workflows/ci.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def main():
4545
elif which == 'test':
4646
builder = os.environ['BUILDER']
4747
run(sys.executable, builder, 'test')
48-
if builder == 'build.py':
48+
if builder == 'unix_build.py':
4949
run(sys.executable, builder, 'leak')
5050
else:
5151
raise SystemExit('Unknown action:', which)

.github/workflows/ci.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
strategy:
1616
matrix:
1717
include:
18-
- { pyver: 2.7, builder: build.py, os: ubuntu-latest, cc: gcc }
19-
- { pyver: 2.7, builder: build.py, os: ubuntu-latest, cc: clang }
20-
- { pyver: 3.6, builder: build.py, os: ubuntu-latest, cc: gcc }
21-
- { pyver: 3.6, builder: build.py, os: ubuntu-latest, cc: clang }
18+
- { pyver: 2.7, builder: unix_build.py, os: ubuntu-latest, cc: gcc }
19+
- { pyver: 2.7, builder: unix_build.py, os: ubuntu-latest, cc: clang }
20+
- { pyver: 3.6, builder: unix_build.py, os: ubuntu-latest, cc: gcc }
21+
- { pyver: 3.6, builder: unix_build.py, os: ubuntu-latest, cc: clang }
2222
- { pyver: 3.8, builder: setup.py, os: ubuntu-latest, cc: gcc }
2323

2424
- { pyver: 3.8, builder: setup.py, os: macos-latest, cc: clang }

MANIFEST.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
exclude *.py
2-
include setup.py build.py run_tests.py gen*.py win-ci.py
2+
include setup.py unix_build.py run_tests.py gen*.py win-ci.py
33
include LICENSE README.rst
44
include gumbo/*.c gumbo/*.h gumbo/*.py gumbo/*.rl
55
include src/*.c src/*.h

publish.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
sys.path.insert(0, '.')
1717
if True:
18-
from build import version
18+
from unix_build import version
1919
del sys.path[0]
2020

2121
VERSION = '{}.{}.{}'.format(*version)

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
base = os.path.dirname(self_path)
1313
sys.path.insert(0, base)
1414
if True:
15-
from build import (
15+
from unix_build import (
1616
SRC_DIRS, TEST_COMMAND, add_python_path, find_c_files, include_dirs, iswindows, libraries,
1717
library_dirs, version
1818
)

build.py unix_build.py

File renamed without changes.

0 commit comments

Comments
 (0)