Skip to content

Commit b0b14ac

Browse files
committed
Fix typos in Makefile
1 parent 770db98 commit b0b14ac

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Makefile

+5-5
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ test: ## run tests
8181
${PYTEST} ${PYTEST_OPTS} ${ARGS}
8282

8383
.PHONY: check
84-
check: flake8 mypy pylint check_docs ## run checks: flake8, mypy, pylint, check_docs
84+
check: flake8 mypy pylint check-docs ## run checks: flake8, mypy, pylint, check-docs
8585

8686
.PHONY: flake8
8787
flake8: ## run flake8
@@ -98,15 +98,15 @@ pylint: ## run pylint
9898
${PYLINT} ${PYLINT_OPTS} --disable=duplicate-code --disable=redefined-outer-name --disable=too-many-arguments ${TESTS_DIR} ${ARGS}
9999

100100
.PHONY: upload-package
101-
upload-package: build_package check_package ## upload the package to PyPI
101+
upload-package: build-package check-package ## upload the package to PyPI
102102
${TWINE} upload ${DIST_DIR}/*
103103

104104
.PHONY: check-package
105-
check-package: build_package ## check that the built package is well-formed
105+
check-package: build-package ## check that the built package is well-formed
106106
${TWINE} check ${DIST_DIR}/*
107107

108108
.PHONY: build
109-
build: build-package ## alias for build_package
109+
build: build-package ## alias for build-package
110110

111111
.PHONY: build-package
112112
build-package: ## build package (source + wheel)
@@ -119,7 +119,7 @@ bump-version-patch: bump-version-check ## bump package version by the patch par
119119
bump2version patch --allow-dirty
120120

121121
.PHONY: bump-version-minor
122-
bump-version-minor: bump-version_-heck ## bump package version by the minor part
122+
bump-version-minor: bump-version-check ## bump package version by the minor part
123123
git add CHANGELOG.md
124124
bump2version minor --allow-dirty
125125

0 commit comments

Comments
 (0)