Skip to content

Commit 3a123d9

Browse files
deprecate python 3.7 support (huggingface#366)
* deprecate python 3.7 support * Update setup.py Co-authored-by: Helena Kloosterman <helena.kloosterman@intel.com> * Update .github/workflows/test_openvino_basic.yml Co-authored-by: Helena Kloosterman <helena.kloosterman@intel.com> --------- Co-authored-by: Helena Kloosterman <helena.kloosterman@intel.com>
1 parent 1acbc1c commit 3a123d9

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/test_openvino_basic.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
matrix:
2525
# Testing lower and upper bound of supported Python versions
2626
# This also ensures that the test fails if dependencies break for Python 3.7
27-
python-version: ["3.7", "3.10"]
27+
python-version: ["3.8", "3.11"]
2828
transformers: ['transformers', 'git+https://github.com/huggingface/transformers.git']
2929
optimum: ['optimum', 'git+https://github.com/huggingface/optimum.git']
3030

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,10 @@
6363
"Intended Audience :: Education",
6464
"Intended Audience :: Science/Research",
6565
"Operating System :: OS Independent",
66-
"Programming Language :: Python :: 3.7",
6766
"Programming Language :: Python :: 3.8",
6867
"Programming Language :: Python :: 3.9",
68+
"Programming Language :: Python :: 3.10",
69+
"Programming Language :: Python :: 3.11",
6970
"Topic :: Scientific/Engineering :: Artificial Intelligence",
7071
],
7172
keywords="transformers, quantization, pruning, knowledge distillation, optimization, training",

0 commit comments

Comments
 (0)