Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-24.04
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
steps:
- uses: actions/checkout@v4
- name: Install uv and set the python version
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
# list of github vm: https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners/about-github-hosted-runners#standard-github-hosted-runners-for-public-repositories
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]

os:
- name: "ubuntu-24.04"
Expand Down
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
include CMakeLists.txt
include build.py
include local_build.py
include *.md
include uv.lock
include LICENSE
Expand Down
File renamed without changes.
20 changes: 14 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,13 @@ classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: C++",
"Programming Language :: Python :: 3"
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
readme = "README.md"
authors = [
Expand All @@ -25,7 +31,7 @@ authors = [
requires-python = ">=3.9"
dependencies = [
"tabulate>=0.9.0,<1.0.0",
"pillow>=10.0.0,<12.0.0",
"pillow>=10.0.0,<13.0.0",
"pydantic>=2.0.0",
"docling-core>=2.44.1",
"pywin32>=305; sys_platform == 'win32'",
Expand All @@ -38,7 +44,8 @@ Repository = "https://github.com/docling-project/docling-parse"
requires = [
"setuptools>=77.0.3",
"pybind11>=2.13.6",
"cibuildwheel>=2.19.2,<3.0.0",
"cibuildwheel>=2.19.2,<3.0.0; python_version < '3.11'",
"cibuildwheel>=2.19.2,<4.0.0; python_version >= '3.11'",
"wheel>=0.43.0,<1.0.0",
"delocate>=0.11.0,<1.0.0",
"cmake>=3.27.0,<4.0.0"
Expand All @@ -49,14 +56,15 @@ build-backend = "setuptools.build_meta"
build = [
"setuptools>=77.0.3",
"pybind11>=2.13.6",
"cibuildwheel>=2.19.2,<3.0.0",
"cibuildwheel>=2.19.2,<3.0.0; python_version < '3.11'",
"cibuildwheel>=2.19.2,<4.0.0; python_version >= '3.11'",
"wheel>=0.43.0,<1.0.0",
"delocate>=0.11.0,<1.0.0",
"cmake>=3.27.0,<4.0.0"
]
dev = [
"pytest>=7.4.2,<8.0.0",
"black[jupyter]>=24.4.2,<25.0.0",
"black[jupyter]>=24.4.2,<26.0.0",
"python-semantic-release>=7.32.2,<8.0.0",
"pre-commit>=3.7.1,<4.0.0",
"isort>=5.10.1,<6.0.0",
Expand Down Expand Up @@ -101,7 +109,7 @@ include = ["docling_parse*"]

[tool.black]
line-length = 88
target-version = ["py39", "py310", "py311", "py312", "py313"]
target-version = ["py39", "py310", "py311", "py312", "py313", "py314"]
include = '\.pyi?$'
preview = true

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

class CustomBuildPy(_build_py):
def run(self):
subprocess.check_call([sys.executable, "build.py"])
subprocess.check_call([sys.executable, "local_build.py"])
super().run()

class BinaryDistribution(Distribution):
Expand Down
2,388 changes: 1,468 additions & 920 deletions uv.lock

Large diffs are not rendered by default.

Loading