Skip to content

Commit 07b6cf0

Browse files
committed
Bump marker version to 1.2.1
1 parent 49560f3 commit 07b6cf0

File tree

11 files changed

+13
-16
lines changed

11 files changed

+13
-16
lines changed

.github/workflows/docker-image-tag-version.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
marker_version:
1414
description: marker version of pypi
1515
required: true
16-
default: 1.2.0
16+
default: 1.2.1
1717
streamlit_version:
1818
description: streamlit version of pypi
1919
required: true
@@ -29,7 +29,7 @@ jobs:
2929
strategy:
3030
matrix:
3131
MARKER_VERSION:
32-
- ${{ github.event.inputs.marker_version || '1.2.0' }}
32+
- ${{ github.event.inputs.marker_version || '1.2.1' }}
3333
STREAMLIT_VERSION:
3434
- ${{ github.event.inputs.streamlit_version || '1.41.1' }}
3535
platform:

.vscode/tasks.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@
2525
"command": "docker build -t xiaoyao9184/marker:master -f ./docker/build@source/dockerfile ."
2626
},
2727
{
28-
"label": "docker: build 1.2.0",
28+
"label": "docker: build 1.2.1",
2929
"type": "shell",
30-
"command": "docker build -t xiaoyao9184/marker:1.2.0 -f ./docker/build@pypi/dockerfile ."
30+
"command": "docker build -t xiaoyao9184/marker:1.2.1 -f ./docker/build@pypi/dockerfile ."
3131
},
3232
{
3333
"label": "huggingface-cli: download models",

docker/build@pypi/dockerfile

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG MARKER_VERSION=1.2.0
1+
ARG MARKER_VERSION=1.2.1
22
ARG STREAMLIT_VERSION=1.41.1
33
ARG GRADIO_VERSION=5.8.0
44

@@ -33,8 +33,7 @@ RUN pip3 install --upgrade pip
3333
RUN pip3 install --no-cache-dir \
3434
marker-pdf==${MARKER_VERSION} \
3535
streamlit==${STREAMLIT_VERSION} \
36-
gradio==${GRADIO_VERSION} \
37-
datasets==2.21.0
36+
gradio==${GRADIO_VERSION}
3837

3938
# COPY --from=fonts /fonts/GoNotoCurrent-Regular.ttf /fonts/GoNotoCurrent-Regular.ttf
4039
# COPY --from=fonts /fonts/GoNotoCJKCore.ttf /fonts/GoNotoCJKCore.ttf

docker/build@source/dockerfile

+1-2
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,7 @@ COPY ./marker /app
2626
RUN pip3 install --no-cache-dir \
2727
-e . \
2828
streamlit==1.41.1 \
29-
gradio==5.8.0 \
30-
datasets==2.21.0
29+
gradio==5.8.0
3130
# The image is too large, with layers exceeding 10GB.
3231
# RUN pip3 install poetry
3332
# RUN poetry install --no-root --with dev

docker/up.gradio@cpu-offline/docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
services:
44
marker_gradio:
5-
image: xiaoyao9184/marker:1.2.0
5+
image: xiaoyao9184/marker:1.2.1
66
container_name: marker_pdf_gradio
77
working_dir: /workspace/gradio
88
command: gradio gradio_app.py

docker/up.gradio@gpu-offline/docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
services:
44
marker_gradio:
5-
image: xiaoyao9184/marker:1.2.0
5+
image: xiaoyao9184/marker:1.2.1
66
container_name: marker_pdf_gradio
77
working_dir: /workspace/gradio
88
command: gradio gradio_app.py

docker/up@cpu-offline/docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
services:
44
marker_app:
5-
image: xiaoyao9184/marker:1.2.0
5+
image: xiaoyao9184/marker:1.2.1
66
container_name: marker_pdf_app
77
environment:
88
- TORCH_DEVICE=cpu

docker/up@gpu-offline/docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
services:
44
marker_app:
5-
image: xiaoyao9184/marker:1.2.0
5+
image: xiaoyao9184/marker:1.2.1
66
container_name: marker_pdf_app
77
environment:
88
- TORCH_DEVICE=cuda

environment.yml

-1
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,3 @@ dependencies:
1616
- pip:
1717
- -e ./marker
1818
- gradio==5.8.0
19-
- datasets==2.21.0

gradio/requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
torch==2.5.1
2-
marker-pdf==1.2.0
2+
marker-pdf==1.2.1
33
gradio==5.8.0
44
huggingface-hub==0.26.3

0 commit comments

Comments
 (0)