Skip to content

Commit bfb9d43

Browse files
authored
[MAINT] Bump conda support to Python 3.14 (#206)
1 parent f6fc6c0 commit bfb9d43

4 files changed

Lines changed: 7 additions & 4 deletions

File tree

.github/workflows/unit_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
env:
7373
MKL_NUM_THREADS: '1'
7474
PYTHONUNBUFFERED: '1'
75-
PYTHON_VERSION: '3.13'
75+
PYTHON_VERSION: '3.14'
7676
steps:
7777
- uses: actions/checkout@v6
7878
- uses: pyvista/setup-headless-display-action@main

changelog.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22

33
## [Development Version](https://pybispectra.readthedocs.io/latest/)
44

5-
No changes.
5+
##### Dependencies
6+
- Added support for Python 3.14 in the `conda` environment.
67

78
<br>
89

environment.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ name: pybispectra
22
channels:
33
- conda-forge
44
dependencies:
5-
- python>=3.10,<3.14
5+
- python>=3.10,<3.15
66
- joblib>=1.2
77
- matplotlib>=3.6
8-
- mne>=1.7
8+
- mne-base>=1.7
99
- numba>=0.56
1010
- numpy>=1.22
1111
- scikit-learn>=1.1

tools/hatch_build.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ def update(self, metadata):
1616
requires_python = ">=3.10"
1717
if is_macos_intel:
1818
requires_python += ", <3.14"
19+
else:
20+
requires_python += ", <3.15"
1921
metadata["requires-python"] = requires_python
2022

2123
# dependencies

0 commit comments

Comments
 (0)