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
10 changes: 5 additions & 5 deletions cpp/Makefile.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -61,15 +61,15 @@ format: fix
################
# Other Checks #
################
.PHONY: check-manifest check-dist checks check

check-manifest: ## check python sdist manifest with check-manifest
check-manifest -v
.PHONY: check-dist check-types checks check

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

checks: check-manifest
check-types: ## check python types with ty
ty check --python $$(which python)

checks: check-dist

# alias
check: checks
Expand Down
12 changes: 0 additions & 12 deletions cpp/pyproject.toml.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ develop = [
"build",
"bump-my-version",
"check-dist",
"check-manifest",
"cibuildwheel",
"codespell",
"hatch-cpp",
Expand Down Expand Up @@ -77,17 +76,6 @@ filename = "pyproject.toml"
search = 'version = "{current_version}"'
replace = 'version = "{new_version}"'

[tool.check-manifest]
ignore = [
".copier-answers.yaml",
".clang-format",
"Makefile",
"docs/**/*",
"{{module}}/*.dll",
"{{module}}/*.dylib",
"{{module}}/*.so",
]

[tool.cibuildwheel]
build = "cp310-* cp311-* cp312-* cp313-*"
test-command = "echo 'TODO'"
Expand Down
10 changes: 5 additions & 5 deletions cppjswasm/Makefile.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -91,15 +91,15 @@ format: fix
################
# Other Checks #
################
.PHONY: check-manifest check-dist checks check

check-manifest: ## check python sdist manifest with check-manifest
check-manifest -v
.PHONY: check-dist check-types checks check

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

checks: check-manifest
check-types: ## check python types with ty
ty check --python $$(which python)

checks: check-dist

# alias
check: checks
Expand Down
16 changes: 0 additions & 16 deletions cppjswasm/pyproject.toml.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ develop = [
"build",
"bump-my-version",
"check-dist",
"check-manifest",
"cibuildwheel",
"codespell",
"hatch-cpp<0.3",
Expand Down Expand Up @@ -85,21 +84,6 @@ filename = "js/package.json"
search = '"version": "{current_version}"'
replace = '"version": "{new_version}"'

[tool.check-manifest]
ignore = [
".copier-answers.yaml",
".clang-format",
"js/pnpm-lock.yaml",
"Makefile",
".vscode/*",
"{{module}}/extension/**/*",
"{{module}}/*.dll",
"{{module}}/*.dylib",
"{{module}}/*.so",
"docs/**/*",
"js/dist/**/*",
]

[tool.cibuildwheel]
build = "cp310-*"
test-command = "pytest -vvv {project}/{{module}}/tests"
Expand Down
Loading