Skip to content

Commit 9088e7a

Browse files
authored
Del python 3.8 support (openvinotoolkit#199)
* Del pyton 3.8 support * Move to a newer macos * Try to fix macos build * Don't test outdated TF models from OMZ
1 parent 9535dee commit 9088e7a

File tree

3 files changed

+6
-18
lines changed

3 files changed

+6
-18
lines changed

.github/workflows/test_precommit.yml

+5-7
Original file line numberDiff line numberDiff line change
@@ -148,21 +148,19 @@ jobs:
148148
strategy:
149149
fail-fast: false
150150
matrix:
151-
os: [ubuntu-20.04, ubuntu-22.04, macos-12]
152-
python-version: [3.8, 3.9, '3.10', '3.11']
151+
os: [ubuntu-20.04, ubuntu-22.04, macos-13]
152+
python-version: [3.9, '3.10', '3.11']
153153
exclude:
154-
- os: macos-12
155-
python-version: 3.9
156-
- os: macos-12
154+
- os: macos-13
157155
python-version: '3.10'
158-
- os: macos-12
156+
- os: macos-13
159157
python-version: '3.11'
160158
runs-on: ${{ matrix.os }}
161159
steps:
162160
- name: Set up docker for macOS
163161
if: startsWith(matrix.os, 'macos-1')
164162
run: |
165-
brew install docker
163+
brew install colima docker
166164
colima start
167165
- uses: actions/checkout@v3
168166
- uses: actions/setup-python@v4

model_api/python/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ build-backend = "setuptools.build_meta"
99
[project]
1010
name = "openvino_model_api"
1111
version = "0.2.4"
12-
requires-python = ">=3.8"
12+
requires-python = ">=3.9"
1313
authors = [
1414
{name = "Intel(R) Corporation"},
1515
]

tests/python/accuracy/public_scope.json

-10
Original file line numberDiff line numberDiff line change
@@ -131,16 +131,6 @@
131131
}
132132
]
133133
},
134-
{
135-
"name": "mobilenet-v3-large-1.0-224-tf",
136-
"type": "ClassificationModel",
137-
"test_data": [
138-
{
139-
"image": "coco128/images/train2017/000000000074.jpg",
140-
"reference": ["208 (Labrador_retriever): 0.166, [0], [0], [0]"]
141-
}
142-
]
143-
},
144134
{
145135
"name": "efficientnet-b0-pytorch",
146136
"type": "ClassificationModel",

0 commit comments

Comments
 (0)