diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 01d6a39..bab1df7 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -19,7 +19,7 @@ jobs: strategy: matrix: os: [ ubuntu-22.04, macOS-14, windows-2022 ] - python-version: [ "3.10" ] + python-version: [ "3.10", "3.11", "3.12" ] steps: - name: Checkout @@ -41,4 +41,4 @@ jobs: run: python -m pip list - name: Run tests - run: python -m pytest -n logical \ No newline at end of file + run: python -m pytest -n logical diff --git a/pyproject.toml b/pyproject.toml index 5ba1d3e..43ae70f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -52,10 +52,10 @@ classifiers = [ ] dependencies = [ - "numpy==1.24.4", - "pandas==2.0.3", + "numpy==1.26.4", + "pandas==2.2.3", "matplotlib==3.7.4", - "scipy==1.10.0", + "scipy==1.11.4", "baycomp==1.0", "tqdm==4.66.1" ]