diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 570be10..5cc29e1 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -17,12 +17,12 @@ jobs: uses: actions/checkout@v2 - name: install requirements - run: | + run: | pip install .[dev] pip install numpy scikit-learn tensorflow --upgrade-strategy only-if-needed - name: run pytest code coverage check - run: | + run: | pytest \ --verbose \ --cov=calcloud \ @@ -54,9 +54,9 @@ jobs: uses: actions/checkout@v2 - name: install requirements - run: | + run: | pip install .[dev] - pip install numpy scikit-learn tensorflow --upgrade-strategy only-if-needed + pip install numpy scikit-learn==1.4.1 tensorflow==2.15.0 --upgrade-strategy only-if-needed - name: run pytest run: pytest -rP \ No newline at end of file diff --git a/calcloud/requirements.txt b/calcloud/requirements.txt index 2126d51..c3726e8 100644 --- a/calcloud/requirements.txt +++ b/calcloud/requirements.txt @@ -1,3 +1 @@ -tensorflow==2.12.1 -scikit-learn==1.3.0 pyyaml diff --git a/lambda/JobPredict/requirements.txt b/lambda/JobPredict/requirements.txt index de01ec0..b95fbeb 100644 --- a/lambda/JobPredict/requirements.txt +++ b/lambda/JobPredict/requirements.txt @@ -1,4 +1,3 @@ -tensorflow==2.12.1 scikit-learn==1.3.0 boto3==1.28.56 protobuf==4.24.3 diff --git a/lambda/ModelIngest/requirements.txt b/lambda/ModelIngest/requirements.txt index 331b693..83344a3 100644 --- a/lambda/ModelIngest/requirements.txt +++ b/lambda/ModelIngest/requirements.txt @@ -1,4 +1,2 @@ -tensorflow==2.12.1 -scikit-learn==1.3.0 numpy -boto3 +boto3 \ No newline at end of file