diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 0409c388..9dcd2d4d 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -18,7 +18,7 @@ jobs: strategy: matrix: os: [windows-latest, ubuntu-latest, macos-latest] - python-version: [3.6, 3.7, 3.8] + python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} @@ -28,7 +28,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install -r requirements.txt + pip install . - name: Run nosetests run: | nosetests diff --git a/requirements.txt b/requirements.txt deleted file mode 100644 index f9bb9b08..00000000 --- a/requirements.txt +++ /dev/null @@ -1,6 +0,0 @@ -matplotlib==3.3.4 -nose==1.3.7 -numpy==1.18.5 -pandas==1.0.3 -requests==2.23.0 -scipy==1.4.1