Browse Source

fix: update installation command in python-package.yml to install core dependencies

myhloli 5 months ago
parent
commit
56265fec7a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      .github/workflows/python-package.yml

+ 1 - 1
.github/workflows/python-package.yml

@@ -82,7 +82,7 @@ jobs:
     - name: Install mineru
       run: |
         python -m pip install --upgrade pip
-        pip install -e .[all]
+        pip install -e .[core]
 
   build:
     needs: [ check-install ]