diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 4c993b9..2f5544c 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -13,6 +13,11 @@ jobs: python-version: ["3.8", "3.9", "3.10", "3.11"] os: [ubuntu-latest] numba: [true, false] + exclude: + - python-version: "3.11" + numba: true + - python-version: "3.12" + numba: true fail-fast: false steps: @@ -26,7 +31,7 @@ jobs: create-args: >- python=${{ matrix.python-version }} pip --file requirements.txt - --file tests/requirements.txt + --file requirements-dev.txt --channel conda-forge - name: Install ioos_qc diff --git a/requirements-dev.txt b/requirements-dev.txt index 35c16a4..9df12cb 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -1,7 +1,9 @@ bokeh dask +erddapy flake8 +isort nco numba<0.57 pytest -pytest-flake8>=1.0.4 \ No newline at end of file +pytest-flake8>=1.0.4 # https://github.com/tholo/pytest-flake8/pull/59 \ No newline at end of file diff --git a/tests/requirements.txt b/tests/requirements.txt deleted file mode 100644 index 1e0f58d..0000000 --- a/tests/requirements.txt +++ /dev/null @@ -1,6 +0,0 @@ -dask -erddapy -flake8 -isort -pytest -pytest-flake8>=1.0.4 # https://github.com/tholo/pytest-flake8/pull/59