Skip to content

Commit

Permalink
Drop old versions of python (#1100)
Browse files Browse the repository at this point in the history
* Drop old versions of python

* Fix compatibility with scipy for now
  • Loading branch information
nils-braun authored Jan 5, 2025
1 parent b970a2e commit d66fc0f
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
scikit-learn>=0.22.0
Expand All @@ -47,7 +47,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 d66fc0f

Please sign in to comment.