diff --git a/.github/workflows/unit_tests.yml b/.github/workflows/unit_tests.yml index dad1222..8a6d7e8 100644 --- a/.github/workflows/unit_tests.yml +++ b/.github/workflows/unit_tests.yml @@ -72,7 +72,7 @@ jobs: env: MKL_NUM_THREADS: '1' PYTHONUNBUFFERED: '1' - PYTHON_VERSION: '3.13' + PYTHON_VERSION: '3.14' steps: - uses: actions/checkout@v6 - uses: pyvista/setup-headless-display-action@main diff --git a/changelog.md b/changelog.md index 2f4ac73..3719146 100644 --- a/changelog.md +++ b/changelog.md @@ -2,7 +2,8 @@ ## [Development Version](https://pybispectra.readthedocs.io/latest/) -No changes. +##### Dependencies +- Added support for Python 3.14 in the `conda` environment.
diff --git a/environment.yml b/environment.yml index cbb450d..ffc93b9 100644 --- a/environment.yml +++ b/environment.yml @@ -2,10 +2,10 @@ name: pybispectra channels: - conda-forge dependencies: - - python>=3.10,<3.14 + - python>=3.10,<3.15 - joblib>=1.2 - matplotlib>=3.6 - - mne>=1.7 + - mne-base>=1.7 - numba>=0.56 - numpy>=1.22 - scikit-learn>=1.1 diff --git a/tools/hatch_build.py b/tools/hatch_build.py index aac907a..a49c51e 100644 --- a/tools/hatch_build.py +++ b/tools/hatch_build.py @@ -16,6 +16,8 @@ def update(self, metadata): requires_python = ">=3.10" if is_macos_intel: requires_python += ", <3.14" + else: + requires_python += ", <3.15" metadata["requires-python"] = requires_python # dependencies