Skip to content

Commit a3fe0b4

Browse files
[MNT] Add lower bound to aeon (#127)
* add lower bound to aeon Updated aeon dependency version constraints in pyproject.toml. * Update pyproject.toml * Update pyproject.toml * remove python 3.9-10 * Update optional dependencies for aeon package
1 parent 52c98a2 commit a3fe0b4

File tree

4 files changed

+5
-7
lines changed

4 files changed

+5
-7
lines changed

.github/workflows/periodic_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
fail-fast: false
6868
matrix:
6969
os: [ ubuntu-24.04, macOS-14, windows-2022 ]
70-
python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13" ]
70+
python-version: [ "3.11", "3.12", "3.13" ]
7171

7272
steps:
7373
- uses: actions/checkout@v4

.github/workflows/pr_pytest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
fail-fast: false
2525
matrix:
2626
os: [ ubuntu-24.04, macOS-14, windows-2022 ]
27-
python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13" ]
27+
python-version: [ "3.11", "3.12", "3.13" ]
2828

2929
steps:
3030
- uses: actions/checkout@v4

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
fail-fast: false
5353
matrix:
5454
os: [ ubuntu-24.04, macOS-14, windows-2022 ]
55-
python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13" ]
55+
python-version: [ "3.11", "3.12", "3.13" ]
5656

5757
steps:
5858
- uses: actions/checkout@v4

pyproject.toml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,13 @@ classifiers = [
3434
"Operating System :: Unix",
3535
"Operating System :: MacOS",
3636
"Programming Language :: Python :: 3",
37-
"Programming Language :: Python :: 3.9",
38-
"Programming Language :: Python :: 3.10",
3937
"Programming Language :: Python :: 3.11",
4038
"Programming Language :: Python :: 3.12",
4139
"Programming Language :: Python :: 3.13",
4240
]
43-
requires-python = ">=3.9,<3.14"
41+
requires-python = ">=3.11,<3.14"
4442
dependencies = [
45-
"aeon",
43+
"aeon>=1.3.0",
4644
"mne",
4745
"pyprep",
4846
"umap-learn",

0 commit comments

Comments
 (0)