Skip to content

Commit a431538

Browse files
Merge pull request #293 from phschiele/p39-support
Add Python 3.9 support (fixes #292)
2 parents 3c5f8bf + 9b15ad5 commit a431538

File tree

5 files changed

+194
-142
lines changed

5 files changed

+194
-142
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,14 @@ jobs:
1111
strategy:
1212
matrix:
1313
os: [ubuntu-latest, windows-latest, macos-latest]
14-
python-version: [3.8]
14+
python-version: [3.9]
1515
include:
1616
- os: ubuntu-latest
1717
python-version: 3.6
1818
- os: ubuntu-latest
1919
python-version: 3.7
20+
- os: ubuntu-latest
21+
python-version: 3.8
2022

2123
steps:
2224
- uses: actions/checkout@v2

pipfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ pandas = ">=0.19"
99
cvxpy = "==1.*,>=1.1.10"
1010
cvxopt = "!=1.2.5.post1,==1.*,>=1.2.0"
1111
matplotlib = "==3.*,>=3.2.0"
12-
scikit-learn = "==0.*,>=0.19.0"
12+
scikit-learn = "==0.*,>=0.24.1"
1313

1414
[dev-packages]
1515
black = "==20.*,>=20.8.0.b1"

0 commit comments

Comments
 (0)