Skip to content

Commit d70a63f

Browse files
authored
changing to 3.9 (#237)
* Stopping testing for 3.6 * Included testing for Python 3.9 * Minimum scipy version required is 1.5.1
1 parent 9e30387 commit d70a63f

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.circleci/config.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- run: ~/.local/bin/nox
1717
test39:
1818
docker:
19-
- image: circleci/python:3.9.1
19+
- image: cimg/python:3.9.1
2020
steps:
2121
- checkout
2222
- run: pip install --user nox
@@ -26,4 +26,6 @@ workflows:
2626
version: 2
2727
build_and_test:
2828
jobs:
29+
- test37
30+
- test38
2931
- test39

noxfile.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def lint(session):
1010

1111
@nox.session
1212
@nox.parametrize('numpy', ['1.18.1', '1.19.4', '1.20.1'])
13-
@nox.parametrize('scipy', ['1.4.1', '1.5.4', '1.6.0'])
13+
@nox.parametrize('scipy', ['1.5.4', '1.6.0'])
1414
@nox.parametrize('pandas', ['1.1.4', '1.2.2'])
1515
def tests(session, numpy, scipy, pandas):
1616
session.install('pytest>=5.3.5',

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ def run(self):
3939
keywords=['scikit', 'sklearn', 'pandas'],
4040
install_requires=[
4141
'scikit-learn>=0.23.0',
42-
'scipy>=1.4.1',
43-
'pandas>=1.0.5',
42+
'scipy>=1.5.1',
43+
'pandas>=1.1.4',
4444
'numpy>=1.18.1'
4545
],
4646
tests_require=['pytest', 'mock'],

0 commit comments

Comments
 (0)