File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -448,7 +448,8 @@ def check_npm(dist_dir, npm_install_options):
448
448
@use_checkout_dir ()
449
449
def check_manifest ():
450
450
"""Check the project manifest"""
451
- if util .PYPROJECT .exists () or util .SETUP_PY .exists ():
451
+ # Only run the check if we're using setuptools
452
+ if util .SETUP_PY .exists () or util .MANIFEST .exists ():
452
453
util .run ("check-manifest -v" )
453
454
else :
454
455
util .log ("Skipping check-manifest since there are no python package files" )
Original file line number Diff line number Diff line change 31
31
SETUP_PY = Path ("setup.py" )
32
32
SETUP_CFG = Path ("setup.cfg" )
33
33
PACKAGE_JSON = Path ("package.json" )
34
+ MANIFEST = Path ("MANIFEST.in" )
34
35
YARN_LOCK = Path ("yarn.lock" )
35
36
JUPYTER_RELEASER_CONFIG = Path (".jupyter-releaser.toml" )
36
37
You can’t perform that action at this time.
0 commit comments