Skip to content

Commit 60f5bbc

Browse files
committed
Bump marker version to 1.1.0
1 parent 94806af commit 60f5bbc

File tree

11 files changed

+16
-18
lines changed

11 files changed

+16
-18
lines changed

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

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ on:
1313
marker_version:
1414
description: marker version of pypi
1515
required: true
16-
default: 1.0.2
16+
default: 1.1.0
1717
streamlit_version:
1818
description: streamlit version of pypi
1919
required: true
20-
default: 1.40.2
20+
default: 1.41.0
2121

2222
jobs:
2323
build-and-push-docker-image:
@@ -29,9 +29,9 @@ jobs:
2929
strategy:
3030
matrix:
3131
MARKER_VERSION:
32-
- ${{ github.event.inputs.marker_version || '1.0.2' }}
32+
- ${{ github.event.inputs.marker_version || '1.1.0' }}
3333
STREAMLIT_VERSION:
34-
- ${{ github.event.inputs.streamlit_version || '1.40.2' }}
34+
- ${{ github.event.inputs.streamlit_version || '1.41.0' }}
3535
platform:
3636
- linux/amd64
3737

.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.0.2",
28+
"label": "docker: build 1.1.0",
2929
"type": "shell",
30-
"command": "docker build -t xiaoyao9184/marker:1.0.2 -f ./docker/build@pypi/dockerfile ."
30+
"command": "docker build -t xiaoyao9184/marker:1.1.0 -f ./docker/build@pypi/dockerfile ."
3131
},
3232
{
3333
"label": "huggingface-cli: download models",

docker/build@pypi/dockerfile

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
ARG MARKER_VERSION=1.0.2
2-
ARG STREAMLIT_VERSION=1.40.2
1+
ARG MARKER_VERSION=1.1.0
2+
ARG STREAMLIT_VERSION=1.41.0
33
ARG GRADIO_VERSION=5.8.0
44

55

@@ -35,8 +35,6 @@ RUN pip3 install --no-cache-dir \
3535
streamlit==${STREAMLIT_VERSION} \
3636
gradio==${GRADIO_VERSION}
3737

38-
COPY ./gradio /workspace/gradio
39-
4038
# COPY --from=fonts /fonts/GoNotoCurrent-Regular.ttf /fonts/GoNotoCurrent-Regular.ttf
4139
# COPY --from=fonts /fonts/GoNotoCJKCore.ttf /fonts/GoNotoCJKCore.ttf
4240
COPY --from=fonts /fonts/GoNotoCurrent-Regular.ttf /opt/conda/lib/python3.11/site-packages/static/fonts/GoNotoCurrent-Regular.ttf

docker/build@source/dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ RUN pip3 install --upgrade pip
2525
COPY ./marker /app
2626
RUN pip3 install --no-cache-dir \
2727
-e . \
28-
streamlit==1.40.2 \
28+
streamlit==1.41.0 \
2929
gradio==5.8.0
3030
# The image is too large, with layers exceeding 10GB.
3131
# RUN pip3 install poetry

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.0.2
5+
image: xiaoyao9184/marker:1.1.0
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.0.2
5+
image: xiaoyao9184/marker:1.1.0
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.0.2
5+
image: xiaoyao9184/marker:1.1.0
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.0.2
5+
image: xiaoyao9184/marker:1.1.0
66
container_name: marker_pdf_app
77
environment:
88
- TORCH_DEVICE=cuda

environment.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ dependencies:
1111
- pytorch==2.5.1
1212
- pytorch-cuda==12.4
1313

14-
- streamlit==1.40.2
14+
- streamlit==1.41.0
1515

1616
- pip:
1717
- -e ./marker

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.0.2
2+
marker-pdf==1.1.0
33
gradio==5.8.0
44
huggingface-hub==0.26.3

marker

Submodule marker updated 101 files

0 commit comments

Comments
 (0)