Skip to content

Commit 42ded15

Browse files
committed
switch from poetry to uv
1 parent ac647d2 commit 42ded15

File tree

2 files changed

+23
-8
lines changed

2 files changed

+23
-8
lines changed

.github/workflows/rhel.yml

Lines changed: 22 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,33 @@
11
on:
22
workflow_call:
33

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+
417
jobs:
518
run-checks:
619
runs-on: ubuntu-latest
720
steps:
821
- 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+
1331
- name: Run build in docker
1432
run: ./.github/scripts/build_rhel.sh
1533
shell: bash

pyproject.toml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ classifiers = [
1414
"Programming Language :: Python :: 3"
1515
]
1616
readme = "README.md"
17+
license = "MIT"
1718
authors = [
1819
{name = "Peter Staar", email = "[email protected]"},
1920
{name = "Christoph Auer", email = "[email protected]"},
@@ -29,10 +30,6 @@ dependencies = [
2930
"docling-core>=2.23.0",
3031
"pywin32>=305; sys_platform == 'win32'",
3132
]
32-
33-
[project.license]
34-
text = "MIT"
35-
3633
[project.urls]
3734
Homepage = "https://github.com/docling-project/docling-parse"
3835
Repository = "https://github.com/docling-project/docling-parse"

0 commit comments

Comments
 (0)