Skip to content

Commit e7df86d

Browse files
authored
Drop Python 3.8 (#3980)
Ticket 151788
1 parent 700cfb6 commit e7df86d

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

.github/workflows/accuracy_checker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
strategy:
77
matrix:
88
runs-on: [ubuntu-20.04, ubuntu-22.04]
9-
python-version: [3.8, 3.9, '3.10']
9+
python-version: [3.9, '3.10']
1010
runs-on: ${{ matrix.runs-on }}
1111
steps:
1212
- uses: actions/checkout@v3

.github/workflows/model_api.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
strategy:
77
matrix:
88
runs-on: [ubuntu-20.04, ubuntu-22.04]
9-
python-version: [3.7, 3.8, 3.9, '3.10', '3.11']
9+
python-version: [3.9, '3.10', '3.11', 3.12]
1010
runs-on: ${{ matrix.runs-on }}
1111
steps:
1212
- uses: actions/checkout@v3

demos/requirements.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
inflect>=5.3.0
22
librosa>=0.8.0;python_version < '3.11'
3-
matplotlib>=3.3.4,<3.8
43
pyparsing
54
motmetrics>=1.2.0
65
nibabel>=3.2.1

tools/accuracy_checker/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ def prepare_requirements():
117117
"accuracy_check=accuracy_checker.main:main",
118118
"convert_annotation=accuracy_checker.annotation_converters.convert:main"]},
119119
zip_safe=False,
120-
python_requires='>=3.8',
120+
python_requires='>=3.9',
121121
install_requires=_requirements,
122122
tests_require=[read("requirements-test.in")],
123123
cmdclass={'test': PyTest, 'install_core': CoreInstall},

0 commit comments

Comments
 (0)