Skip to content

Commit 94806af

Browse files
committed
Bump marker version to 1.0.2
1 parent 18655da commit 94806af

File tree

9 files changed

+11
-11
lines changed

9 files changed

+11
-11
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.0.1
16+
default: 1.0.2
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.0.1' }}
32+
- ${{ github.event.inputs.marker_version || '1.0.2' }}
3333
STREAMLIT_VERSION:
3434
- ${{ github.event.inputs.streamlit_version || '1.40.2' }}
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.0.1",
28+
"label": "docker: build 1.0.2",
2929
"type": "shell",
30-
"command": "docker build -t xiaoyao9184/marker:1.0.1 -f ./docker/build@pypi/dockerfile ."
30+
"command": "docker build -t xiaoyao9184/marker:1.0.2 -f ./docker/build@pypi/dockerfile ."
3131
},
3232
{
3333
"label": "huggingface-cli: download models",

docker/build@pypi/dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG MARKER_VERSION=1.0.1
1+
ARG MARKER_VERSION=1.0.2
22
ARG STREAMLIT_VERSION=1.40.2
33
ARG GRADIO_VERSION=5.8.0
44

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

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

0 commit comments

Comments
 (0)