We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 231f72f commit 354e9f2Copy full SHA for 354e9f2
.github/workflows/run_tests_suite_pip.yml
@@ -22,7 +22,7 @@ jobs:
22
run: |
23
python -m pip install --upgrade pip
24
pip install -r requirements.txt
25
- pip install twine wheel
+ pip install twine wheel setuptools
26
- name: Build WHL file
27
28
version=$(python -c 'import mct_quantizers; print(mct_quantizers.__version__)')
@@ -42,9 +42,11 @@ jobs:
42
43
rm -rf mct_quantizers
44
- name: Install TF
45
+ if: ${{ inputs.python_version != '3.12' }}
46
47
pip install tensorflow==2.15.*
48
- name: Run TF Tests
49
50
51
python -m unittest discover tests/keras_tests --verbose
52
- name: Prepare for Torch
0 commit comments