Skip to content

Commit

Permalink
[MNT] Set upper bound on esig version (#2463)
Browse files Browse the repository at this point in the history
Bounded esig to <1.0.0 to avoid breaking CI for python 3.9
  • Loading branch information
chrisholder authored Dec 18, 2024
1 parent 0e9680a commit 5c7bdad
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,11 @@ dependencies = [
[project.optional-dependencies]
# soft dependencies
all_extras = [
"esig>=0.9.7; platform_system != 'Darwin' and python_version < '3.11'",
# Upper bound set as <1.0.0 as 1.0 dropped support for python 3.9. We will remove
# the upper bound once we also drop support for python 3.9 later in 2025.
"esig>=0.9.7,<1.0.0; platform_system != 'Darwin' and python_version < '3.11'",
"imbalanced-learn",
"matplotlib>=3.3.2",
"matplotlib>=3.3.2", # Remove upper bound
"pycatch22>=0.4.5",
"pyod>=1.1.3",
"prts>=1.0.0.0",
Expand Down

0 comments on commit 5c7bdad

Please sign in to comment.