Skip to content

Commit d79b396

Browse files
committed
ignore python 3.8
1 parent ad1f5a1 commit d79b396

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
run: |
4949
python -m pip install --upgrade pip
5050
pip install -r requirements.txt
51-
if [ "${{ matrix.python-version }}" != "3.14" ]; then
51+
if [ "${{ matrix.python-version }}" != "3.14" ] && [ "${{ matrix.python-version }}" != "3.8" ]; then
5252
pip install tensorflow
5353
pip install --upgrade keras
5454
pip install torch
@@ -74,7 +74,7 @@ jobs:
7474
# This includes our new tests for visualization, operators, parallel processing, etc.
7575
- name: Run Tests
7676
run: |
77-
if [ "${{ matrix.python-version }}" == "3.14" ]; then
77+
if [ "${{ matrix.python-version }}" == "3.14" ] || [ "${{ matrix.python-version }}" == "3.8" ]; then
7878
pytest --ignore=tests/test_kerasga.py --ignore=tests/test_torchga.py
7979
else
8080
pytest

0 commit comments

Comments
 (0)