Compare commits

...

5 Commits

Author SHA1 Message Date
copilot-swe-agent[bot]
fbea43f0e0 Add Python build artifacts to .gitignore and remove accidentally committed files
Co-authored-by: myhloli <11393164+myhloli@users.noreply.github.com>
2026-01-29 04:25:04 +00:00
copilot-swe-agent[bot]
9ac7d8cbf7 Fix mineru CLI entry point format in pyproject.toml
Co-authored-by: myhloli <11393164+myhloli@users.noreply.github.com>
2026-01-29 04:24:16 +00:00
copilot-swe-agent[bot]
dc42d7d654 Initial plan 2026-01-29 04:21:16 +00:00
myhloli
1c57a7bd9b Update version.py with new version 2026-01-26 11:37:13 +00:00
Xiaomeng Zhao
e2282af933 Merge pull request #4419 from opendatalab/release-2.7.3
Release 2.7.3
2026-01-26 19:32:41 +08:00
3 changed files with 8 additions and 2 deletions

6
.gitignore vendored
View File

@@ -16,6 +16,12 @@ debug/
*.ipynb
.idea
# Python build artifacts
*.egg-info/
build/
dist/
*.egg
# vscode history
.history

View File

@@ -1 +1 @@
__version__ = "2.7.2"
__version__ = "2.7.3"

View File

@@ -109,7 +109,7 @@ repository = "https://github.com/opendatalab/MinerU"
issues = "https://github.com/opendatalab/MinerU/issues"
[project.scripts]
mineru = "mineru.cli:client.main"
mineru = "mineru.cli.client:main"
mineru-vllm-server = "mineru.cli.vlm_server:vllm_server"
mineru-lmdeploy-server = "mineru.cli.vlm_server:lmdeploy_server"
mineru-openai-server = "mineru.cli.vlm_server:openai_server"