diff --git a/.github/workflows/test_python.yml b/.github/workflows/test_python.yml index a9139d3..2523f07 100644 --- a/.github/workflows/test_python.yml +++ b/.github/workflows/test_python.yml @@ -20,7 +20,7 @@ jobs: run: | python -m pip install --upgrade pip pip install flake8 pytest - if [ -f requirements.txt ]; then pip install -r requirements-nogpu.txt; fi + if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - name: Lint with flake8 run: | # stop the build if there are Python syntax errors or undefined names diff --git a/requirements-nogpu.txt b/requirements-nogpu.txt deleted file mode 100644 index fbf1539..0000000 --- a/requirements-nogpu.txt +++ /dev/null @@ -1,5 +0,0 @@ -numpy == 1.18.5 -scikit-learn == 0.23.2 -scipy == 1.5.2. -tensorflow == 2.3.1 -# keras==2.2.4 diff --git a/requirements.txt b/requirements.txt index cf1ed3b..31a6c3b 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,4 @@ -numpy == 1.18.5 -scikit-learn == 0.23.2 -scipy == 1.5.2. -tensorflow-gpu == 2.3.1 -# keras==2.2.4 +numpy +scikit-learn +scipy +tensorflow \ No newline at end of file