diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 620e7608d..8d0201b81 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -16,7 +16,7 @@ jobs: strategy: matrix: - python-version: ["3.10", "3.11", "3.12", "3.13"] + python-version: ["3.11", "3.12", "3.13", "3.14"] steps: - uses: actions/checkout@v5 @@ -25,6 +25,7 @@ jobs: uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} + allow-prereleases: true cache: "pip" - name: Install dependencies diff --git a/.github/workflows/regtest.yml b/.github/workflows/regtest.yml index e531f5b1e..b2092777a 100644 --- a/.github/workflows/regtest.yml +++ b/.github/workflows/regtest.yml @@ -16,7 +16,7 @@ jobs: strategy: matrix: - python-version: ["3.10", "3.11", "3.12", "3.13"] + python-version: ["3.11", "3.12", "3.13", "3.14"] steps: - uses: actions/checkout@v5 @@ -25,6 +25,7 @@ jobs: uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} + allow-prereleases: true cache: "pip" - name: Install dependencies diff --git a/requirements.txt b/requirements.txt index 4d6b2210c..545523af9 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,7 +2,7 @@ numpy>=1.13.3 matplotlib>=2.0.0 h5py>=2.7 scipy>=0.16 -numba>=0.40.0 +numba==0.63.0b1 pytest>=3.6 nbval>=0.9.0