Skip to content

Commit 6227de3

Browse files
authored
Merge pull request #28 from timkpaine/tkp/manifest
Fix some copypasta, remove check-manifest check
2 parents 2b272d7 + 11fd8de commit 6227de3

File tree

4 files changed

+114
-168
lines changed

4 files changed

+114
-168
lines changed

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -260,6 +260,4 @@ typings/
260260
# Build files
261261
lib
262262
dist
263-
264-
# JS Built assets
265263
python/daggre/static

python/Makefile

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,7 @@ format: fix
4747
#################
4848
check: checks
4949

50-
checks: check-manifest annotate ## run security, packaging, and other checks
51-
52-
check-manifest: prebuild ## run manifest checker for sdist
53-
check-manifest -v
50+
checks: annotate ## run security, packaging, and other checks
5451

5552
annotate: ## run mypy type annotation
5653
mypy daggre/

python/pyproject.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ dependencies = [
4343
[project.optional-dependencies]
4444
develop = [
4545
"black>=23",
46-
"check-manifest",
4746
"isort",
4847
"mypy",
4948
"ruff>=0.3,<0.4",
@@ -62,7 +61,6 @@ Homepage = "https://github.com/timkpaine/daggre"
6261
[tool.check-manifest]
6362
ignore = [
6463
"daggre/static/**",
65-
"js/**"
6664
]
6765

6866
[tool.hatch.build]
@@ -116,6 +114,7 @@ dependencies = [
116114
[tool.hatch.build.hooks.jupyter-builder.build-kwargs]
117115
path = "../js"
118116
build_cmd = "build"
117+
npm = "yarn"
119118

120119
[tool.isort]
121120
combine_as_imports = true
@@ -128,7 +127,7 @@ known_first_party = "daggre"
128127

129128
[tool.pytest.ini_options]
130129
asyncio_mode = 'strict'
131-
testpaths = 'pyproject_cookiecutter_example/tests'
130+
testpaths = 'daggre/tests'
132131

133132
[tool.ruff]
134133
line-length = 150

0 commit comments

Comments
 (0)