Skip to content

Commit

Permalink
Merge branch 'main' into feature/migrate-pywt
Browse files Browse the repository at this point in the history
  • Loading branch information
nils-braun authored Jan 5, 2025
2 parents 978c084 + d66fc0f commit ca11abd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.7, 3.8, 3.9]
python-version: [3.9, "3.10", 3.11, 3.12]
steps:
- uses: actions/checkout@v3

Expand Down
6 changes: 3 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ install_requires =
requests>=2.9.1
numpy >=1.15.1
pandas>=0.25.0
scipy>=1.14.0;python_version>='3.10'
scipy>=1.2.0;python_version<'3.10'
scipy>=1.14.0,<1.15;python_version>='3.10'
scipy>=1.2.0,<1.15;python_version<'3.10'
statsmodels>=0.13
patsy>=0.4.1
pywavelets>=1.8.0
Expand All @@ -48,7 +48,7 @@ install_requires =
cloudpickle

# Require a specific Python version, e.g. Python 2.7 or >= 3.4
python_requires = >= 3.7
python_requires = >= 3.9

[options.packages.find]
where = .
Expand Down

0 comments on commit ca11abd

Please sign in to comment.