Skip to content

Commit 6a825ea

Browse files
committed
build: fix make check when twine is not installed
Co-authored-by: "dimitryzub <dmitriy@serpapi.com>"
1 parent ad1923e commit 6a825ea

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ version=$(shell grep version setup.py | cut -d"'" -f2)
55

66
.PHONY: build
77

8-
all: clean install test test2
8+
all: clean install test
99

1010
clean:
1111
find . -name '*.pyc' -delete
@@ -25,10 +25,10 @@ example:
2525
pytest -s "tests/test_example.py::TestExample::test_async"
2626

2727
build_dep:
28-
pip3 install -U setuptools
28+
pip3 install -U setuptools twine
2929

3030
# https://packaging.python.org/tutorials/packaging-projects/
31-
build:
31+
build: build_dep
3232
python3 setup.py sdist
3333

3434
oobt: build

0 commit comments

Comments
 (0)