We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad1f5a1 commit d79b396Copy full SHA for d79b396
1 file changed
.github/workflows/main.yml
@@ -48,7 +48,7 @@ jobs:
48
run: |
49
python -m pip install --upgrade pip
50
pip install -r requirements.txt
51
- if [ "${{ matrix.python-version }}" != "3.14" ]; then
+ if [ "${{ matrix.python-version }}" != "3.14" ] && [ "${{ matrix.python-version }}" != "3.8" ]; then
52
pip install tensorflow
53
pip install --upgrade keras
54
pip install torch
@@ -74,7 +74,7 @@ jobs:
74
# This includes our new tests for visualization, operators, parallel processing, etc.
75
- name: Run Tests
76
77
- if [ "${{ matrix.python-version }}" == "3.14" ]; then
+ if [ "${{ matrix.python-version }}" == "3.14" ] || [ "${{ matrix.python-version }}" == "3.8" ]; then
78
pytest --ignore=tests/test_kerasga.py --ignore=tests/test_torchga.py
79
else
80
pytest
0 commit comments