File tree Expand file tree Collapse file tree 2 files changed +23
-8
lines changed Expand file tree Collapse file tree 2 files changed +23
-8
lines changed Original file line number Diff line number Diff line change 1
1
on :
2
2
workflow_call :
3
3
4
+ # jobs:
5
+ # run-checks:
6
+ # runs-on: ubuntu-latest
7
+ # steps:
8
+ # - uses: actions/checkout@v4
9
+ # - name: Install uv and python
10
+ # uses: astral-sh/setup-uv@v5
11
+ # - name: Install podman
12
+ # run: sudo apt-get update && sudo apt-get install -y podman
13
+ # - name: Run build in docker
14
+ # run: ./.github/scripts/build_rhel.sh
15
+ # shell: bash
16
+
4
17
jobs :
5
18
run-checks :
6
19
runs-on : ubuntu-latest
7
20
steps :
8
21
- uses : actions/checkout@v4
9
- - name : Install uv and python
10
- uses : astral-sh/setup-uv@v5
11
- - name : Install podman
12
- run : sudo apt-get update && sudo apt-get install -y podman
22
+
23
+ - name : Set up Python 3.11
24
+ uses : actions/setup-python@v5
25
+ with :
26
+ python-version : ' 3.11'
27
+
28
+ - name : Install podman and uv
29
+ run : sudo apt-get update && sudo apt-get install -y podman uv
30
+
13
31
- name : Run build in docker
14
32
run : ./.github/scripts/build_rhel.sh
15
33
shell : bash
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ classifiers = [
14
14
" Programming Language :: Python :: 3"
15
15
]
16
16
readme = " README.md"
17
+ license = " MIT"
17
18
authors = [
18
19
{
name =
" Peter Staar" ,
email =
" [email protected] " },
19
20
{
name =
" Christoph Auer" ,
email =
" [email protected] " },
@@ -29,10 +30,6 @@ dependencies = [
29
30
" docling-core>=2.23.0" ,
30
31
" pywin32>=305; sys_platform == 'win32'" ,
31
32
]
32
-
33
- [project .license ]
34
- text = " MIT"
35
-
36
33
[project .urls ]
37
34
Homepage = " https://github.com/docling-project/docling-parse"
38
35
Repository = " https://github.com/docling-project/docling-parse"
You can’t perform that action at this time.
0 commit comments