Skip to content
Draft
Show file tree
Hide file tree
Changes from 2 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
8 changes: 4 additions & 4 deletions .github/workflows/lib-lint-and-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
with:
python-version: "3.13"
python-version: "3.10"

- name: Install uv
uses: astral-sh/setup-uv@3259c6206f993105e3a61b142c2d97bf4b9ef83d # v7.1.0
Expand Down Expand Up @@ -112,7 +112,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.13"]
python-version: ["3.10", "3.14-dev"]
name: unit-tests-with-Python${{ matrix.python-version }}
steps:
- name: Checkout repository
Expand All @@ -123,7 +123,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
with:
python-version: "3.13"
python-version: ${{ matrix.python-version }}

- name: Install uv
uses: astral-sh/setup-uv@3259c6206f993105e3a61b142c2d97bf4b9ef83d # v7.1.0
Expand Down Expand Up @@ -158,7 +158,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.13"]
python-version: ["3.10", "3.14-dev"]
include:
- task: "multi_class_cls"
- task: "multi_label_cls"
Expand Down
7 changes: 5 additions & 2 deletions library/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,11 @@ classifiers = [
"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",
]
dependencies = [
"datumaro~=1.12.0",
"datumaro[experimental]",
"omegaconf==2.3.0",
"rich==14.0.0",
"jsonargparse==4.35.0",
Expand All @@ -42,7 +44,7 @@ dependencies = [
"torchmetrics==1.6.0",
"pytorchcv==0.0.67",
"timm==1.0.3",
"openvino==2025.3",
"openvino==2025.4",
"openvino-model-api==0.3.0.4",
"onnx==1.19.1",
"onnxconverter-common==1.16.0",
Expand Down Expand Up @@ -148,6 +150,7 @@ torchvision = [
{ index = "torch-xpu", extra = "xpu"},
{ index = "torch-cuda", extra = "cuda"},
]
datumaro = { git = "https://github.com/open-edge-platform/datumaro.git", branch = "develop" }

[[tool.uv.index]]
name = "torch-cpu"
Expand Down
Loading
Loading