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 69deb4c commit ad1f5a1Copy full SHA for ad1f5a1
1 file changed
.github/workflows/main.yml
@@ -48,9 +48,11 @@ jobs:
48
run: |
49
python -m pip install --upgrade pip
50
pip install -r requirements.txt
51
- pip install tensorflow
52
- pip install --upgrade keras
53
- pip install torch
+ if [ "${{ matrix.python-version }}" != "3.14" ]; then
+ pip install tensorflow
+ pip install --upgrade keras
54
+ pip install torch
55
+ fi
56
57
# Build the PyGAD package distribution (generating .tar.gz and .whl files).
58
# This ensures the package build process is valid on this Python version.
@@ -72,4 +74,8 @@ jobs:
72
74
# This includes our new tests for visualization, operators, parallel processing, etc.
73
75
- name: Run Tests
76
- pytest
77
+ if [ "${{ matrix.python-version }}" == "3.14" ]; then
78
+ pytest --ignore=tests/test_kerasga.py --ignore=tests/test_torchga.py
79
+ else
80
+ pytest
81
0 commit comments