From 7c280c4a41f363d606764c6705cc0c6e61fa2690 Mon Sep 17 00:00:00 2001 From: konegen Date: Thu, 7 Nov 2024 08:31:32 +0100 Subject: [PATCH] Updated Python version of Function-test.yml --- .github/workflows/Function-test.yml | 16 +++++++--------- requirements.txt | 3 +-- 2 files changed, 8 insertions(+), 11 deletions(-) diff --git a/.github/workflows/Function-test.yml b/.github/workflows/Function-test.yml index c91025b..c3fd045 100644 --- a/.github/workflows/Function-test.yml +++ b/.github/workflows/Function-test.yml @@ -1,4 +1,4 @@ -name: Function Test +name: Funktionstest on: push: @@ -11,17 +11,15 @@ jobs: runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v3 - - name: Set up Miniconda - uses: conda-incubator/setup-miniconda@v3 + - name: Setze Python 3.10 + uses: actions/setup-python@v4 with: python-version: '3.10' - auto-activate-base: false - activate-environment: myenv - use-mamba: true - - name: Install Dependencies + architecture: x64 + - name: Installiere Abhängigkeiten run: | - conda install -y pip + python -m pip install --upgrade pip pip install -r requirements.txt - - name: Run Pruning Function Test Script + - name: Führe Pruning-Funktionstest aus run: | python src/test/pruning_function_test.py diff --git a/requirements.txt b/requirements.txt index aba0e62..2eccdfe 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,2 @@ -# tensorflow-gpu==2.10.* -tensorflow==2.10.* +tensorflow-gpu==2.10.* scikit-learn==1.5.2 \ No newline at end of file