Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion cpp/Makefile.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,14 @@ format: fix
################
# Other Checks #
################
.PHONY: check-manifest checks check
.PHONY: check-manifest check-dist checks check

check-manifest: ## check python sdist manifest with check-manifest
check-manifest -v

check-dist: ## check python sdist and wheel with check-dist
check-dist -v

checks: check-manifest

# alias
Expand Down
1 change: 1 addition & 0 deletions cpp/pyproject.toml.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ dependencies = []
develop = [
"build",
"bump-my-version",
"check-dist",
"check-manifest",
"cibuildwheel",
"codespell",
Expand Down
5 changes: 4 additions & 1 deletion cppjswasm/Makefile.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -91,11 +91,14 @@ format: fix
################
# Other Checks #
################
.PHONY: check-manifest checks check
.PHONY: check-manifest check-dist checks check

check-manifest: ## check python sdist manifest with check-manifest
check-manifest -v

check-dist: ## check python sdist and wheel with check-dist
check-dist -v

checks: check-manifest

# alias
Expand Down
1 change: 1 addition & 0 deletions cppjswasm/pyproject.toml.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ dependencies = []
develop = [
"build",
"bump-my-version",
"check-dist",
"check-manifest",
"cibuildwheel",
"codespell",
Expand Down
5 changes: 4 additions & 1 deletion js/Makefile.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -73,11 +73,14 @@ format: fix
################
# Other Checks #
################
.PHONY: check-manifest checks check
.PHONY: check-manifest check-dist checks check

check-manifest: ## check python sdist manifest with check-manifest
check-manifest -v

check-dist: ## check python sdist and wheel with check-dist
check-dist -v

checks: check-manifest

# alias
Expand Down
1 change: 1 addition & 0 deletions js/pyproject.toml.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ dependencies = []
develop = [
"build",
"bump-my-version",
"check-dist",
"check-manifest",
"codespell",
"hatch-js",
Expand Down
5 changes: 4 additions & 1 deletion jupyter/Makefile.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -73,11 +73,14 @@ format: fix
################
# Other Checks #
################
.PHONY: check-manifest checks check
.PHONY: check-manifest check-dist checks check

check-manifest: ## check python sdist manifest with check-manifest
check-manifest -v

check-dist: ## check python sdist and wheel with check-dist
check-dist -v

checks: check-manifest

# alias
Expand Down
1 change: 1 addition & 0 deletions jupyter/pyproject.toml.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ dependencies = []
develop = [
"build",
"bump-my-version",
"check-dist",
"check-manifest",
"codespell",
"hatch-js",
Expand Down
5 changes: 4 additions & 1 deletion python/Makefile.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,14 @@ format: fix
################
# Other Checks #
################
.PHONY: check-manifest checks check
.PHONY: check-manifest check-dist checks check

check-manifest: ## check python sdist manifest with check-manifest
check-manifest -v

check-dist: ## check python sdist and wheel with check-dist
check-dist -v

checks: check-manifest

# Alias
Expand Down
1 change: 1 addition & 0 deletions python/pyproject.toml.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ dependencies = []
develop = [
"build",
"bump-my-version",
"check-dist",
"check-manifest",
"codespell",
"hatchling",
Expand Down
5 changes: 4 additions & 1 deletion rust/Makefile.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,14 @@ format: fix
################
# Other Checks #
################
.PHONY: check-manifest checks check
.PHONY: check-manifest check-dist checks check

check-manifest: ## check python sdist manifest with check-manifest
check-manifest -v

check-dist: ## check python sdist and wheel with check-dist
check-dist -v

checks: check-manifest

# alias
Expand Down
1 change: 1 addition & 0 deletions rust/pyproject.toml.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ dependencies = []
develop = [
"build",
"bump-my-version",
"check-dist",
"check-manifest",
"cibuildwheel",
"codespell",
Expand Down
5 changes: 4 additions & 1 deletion rustjswasm/Makefile.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -88,11 +88,14 @@ format: fix
################
# Other Checks #
################
.PHONY: check-manifest checks check
.PHONY: check-manifest check-dist checks check

check-manifest: ## check python sdist manifest with check-manifest
check-manifest -v

check-dist: ## check python sdist and wheel with check-dist
check-dist -v

checks: check-manifest

# alias
Expand Down
1 change: 1 addition & 0 deletions rustjswasm/pyproject.toml.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ dependencies = []
develop = [
"build",
"bump-my-version",
"check-dist",
"check-manifest",
"cibuildwheel",
"codespell",
Expand Down
Loading