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/pre_commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
with:
python-version: "3.9"
python-version: "3.10"
- name: Install dependencies
run: pip install 'src/python/.[tests,ovms]'
- name: Run python unit tests
Expand Down
9 changes: 3 additions & 6 deletions .github/workflows/test_precommit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
with:
python-version: 3.9
python-version: "3.10"
cache: pip
- name: Create and start a virtual environment
run: |
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:
persist-credentials: false
- uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
with:
python-version: 3.9
python-version: "3.10"
cache: pip
- name: Create and start a virtual environment
shell: bash
Expand Down Expand Up @@ -135,10 +135,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-22.04, ubuntu-24.04]
python-version: [3.9, "3.10", "3.11"]
exclude:
- os: ubuntu-24.04
python-version: "3.9"
python-version: ["3.10", "3.11", "3.13"]
runs-on: ${{ matrix.os }}
steps:
- name: Set up docker for macOS
Expand Down
4 changes: 2 additions & 2 deletions src/python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "openvino_model_api"
version = "0.3.0.3"
requires-python = ">=3.9"
requires-python = ">=3.10"
authors = [
{name = "Intel(R) Corporation"},
]
Expand All @@ -21,7 +21,7 @@ description = "Model API: model wrappers and pipelines for inference with OpenVI
readme = "README.md"
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.9"
"Programming Language :: Python :: 3.10"
]
dependencies = [
"numpy>=1.16.6",
Expand Down