From 3842527a52edbfca1b0230572ceeb472aff0d3ea Mon Sep 17 00:00:00 2001 From: Milad Ahmadi <45760486+milad-ahmadi@users.noreply.github.com> Date: Tue, 12 Dec 2023 11:25:29 +0330 Subject: [PATCH] Update python-package.yml --- .github/workflows/python-package.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 14a4e65..41657ef 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -16,7 +16,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.9", "3.10", "3.11"] + python-version: ["3.6"] steps: - uses: actions/checkout@v3 @@ -28,6 +28,14 @@ jobs: run: | python -m pip install --upgrade pip python -m pip install flake8 pytest + python -m pip install tensorflow-gpu + python -m pip install scipy==1.0.0 + python -m pip install Pillow + python -m pip install pandas + python -m pip install matplotlib + python -m pip install scikit-learn + python -m pip install seaborn + python -m pip install opencv-python if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - name: Lint with flake8 run: |