Skip to content

Commit e788b69

Browse files
committed
update tests to run on python3.8
1 parent 4af15ee commit e788b69

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

.circleci/config.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ version: 2
22
jobs:
33
build-python36:
44
docker:
5-
- image: python:3.6.7
5+
- image: python:3.8.11
66
working_directory: ~/repo
77
steps:
8-
- run: echo "hello python 3.6.7"
8+
- run: echo "hello python 3.8.11"
99
- checkout
1010

1111
# Download and cache dependencies
@@ -23,7 +23,6 @@ jobs:
2323
- run:
2424
name: run tests
2525
command: |
26-
pip install pandas==1.1.5 numpy==1.19.4 scipy==1.5.4
2726
pip install flake8 && flake8
2827
python setup.py develop
2928
python setup.py test
@@ -34,11 +33,11 @@ jobs:
3433
key: v1-dependencies-{{ checksum "setup.py" }}
3534

3635
- store_artifacts:
37-
path: test-reports3.6.7
38-
destination: test-reports3.6.7
36+
path: test-reports3.8.11
37+
destination: test-reports3.8.11
3938

4039
workflows:
4140
version: 2
4241
build:
4342
jobs:
44-
- build-python36
43+
- build-python38

0 commit comments

Comments
 (0)