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):
448448@use_checkout_dir ()
449449def check_manifest ():
450450 """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 ():
452453 util .run ("check-manifest -v" )
453454 else :
454455 util .log ("Skipping check-manifest since there are no python package files" )
Original file line number Diff line number Diff line change 3131SETUP_PY = Path ("setup.py" )
3232SETUP_CFG = Path ("setup.cfg" )
3333PACKAGE_JSON = Path ("package.json" )
34+ MANIFEST = Path ("MANIFEST.in" )
3435YARN_LOCK = Path ("yarn.lock" )
3536JUPYTER_RELEASER_CONFIG = Path (".jupyter-releaser.toml" )
3637
You can’t perform that action at this time.
0 commit comments