Commit cb57e84c authored by myhloli's avatar myhloli
Browse files

feat: update README_zh-CN to reflect comprehensive changes in MinerU 2.0...

feat: update README_zh-CN to reflect comprehensive changes in MinerU 2.0 architecture and functionality
parent 0d6d5701
...@@ -32,14 +32,14 @@ jobs: ...@@ -32,14 +32,14 @@ jobs:
- name: Verify version.py - name: Verify version.py
run: | run: |
ls -l magic_pdf/libs/version.py ls -l mineru/version.py
cat magic_pdf/libs/version.py cat mineru/version.py
- name: Commit changes - name: Commit changes
run: | run: |
git config --local user.email "moe@myhloli.com" git config --local user.email "moe@myhloli.com"
git config --local user.name "myhloli" git config --local user.name "myhloli"
git add magic_pdf/libs/version.py git add mineru/version.py
if git diff-index --quiet HEAD; then if git diff-index --quiet HEAD; then
echo "No changes to commit" echo "No changes to commit"
else else
...@@ -71,18 +71,18 @@ jobs: ...@@ -71,18 +71,18 @@ jobs:
- name: Verify version.py - name: Verify version.py
run: | run: |
ls -l magic_pdf/libs/version.py ls -l mineru/version.py
cat magic_pdf/libs/version.py cat mineru/version.py
- name: Set up Python ${{ matrix.python-version }} - name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5 uses: actions/setup-python@v5
with: with:
python-version: ${{ matrix.python-version }} python-version: ${{ matrix.python-version }}
- name: Install magic-pdf - name: Install mineru
run: | run: |
python -m pip install --upgrade pip python -m pip install --upgrade pip
pip install -e .[full] pip install -e .[all]
build: build:
needs: [ check-install ] needs: [ check-install ]
...@@ -103,10 +103,11 @@ jobs: ...@@ -103,10 +103,11 @@ jobs:
- name: Install wheel - name: Install wheel
run: | run: |
python -m pip install wheel python -m pip install wheel
pip install build
- name: Build wheel - name: Build wheel
run: | run: |
python setup.py bdist_wheel python -m build --wheel
- name: Upload artifact - name: Upload artifact
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v4
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment