Skip to content

Commit

Permalink
Update circleci to run checkin tests on py3.8 (#462)
Browse files Browse the repository at this point in the history
* Update circleci to run checkin tests on py3.8

* Changelog
  • Loading branch information
dsherry authored Mar 9, 2020
1 parent 91d62ec commit d01cbeb
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 8 deletions.
28 changes: 20 additions & 8 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ executors:
parameters:
python_version:
type: string
default: "3.7"
default: "3.8"
working_directory: ~/evalml
docker:
- image: circleci/python:<< parameters.python_version >>
Expand All @@ -34,7 +34,7 @@ jobs:
parameters:
python_version:
type: string
default: "3.7"
default: "3.8"
executor:
name: python
python_version: << parameters.python_version >>
Expand All @@ -49,7 +49,7 @@ jobs:
parameters:
python_version:
type: string
default: "3.7"
default: "3.8"
miniconda_pkg_name:
type: string
default: "Miniconda3-4.7.12.1-Windows-x86_64.exe"
Expand Down Expand Up @@ -123,7 +123,7 @@ jobs:
parameters:
python_version:
type: string
default: "3.7"
default: "3.8"
codecov:
type: boolean
default: false
Expand Down Expand Up @@ -161,7 +161,7 @@ jobs:
build_docs:
working_directory: ~/evalml/
docker:
- image: circleci/python:3.7
- image: circleci/python:3.8
steps:
- checkout
- install_dependencies_dev
Expand All @@ -172,7 +172,7 @@ jobs:
parameters:
python_version:
type: string
default: "3.7"
default: "3.8"
executor:
name: python
python_version: << parameters.python_version >>
Expand Down Expand Up @@ -224,11 +224,17 @@ workflows:
filters:
branches:
only: master
- win_unit_tests:
name: "windows python 3.8 unit tests"
python_version: "3.8"
filters:
branches:
only: master
check_dependencies_updated_linux:
jobs:
- check_dependencies_updated_linux:
name: "linux python 3.7 check dependencies for updates"
python_version: "3.7"
name: "linux python 3.8 check dependencies for updates"
python_version: "3.8"
filters:
branches:
ignore: /^master?/
Expand All @@ -240,10 +246,16 @@ workflows:
- lint_test:
name: "python 3.7 lint test"
python_version: "3.7"
- lint_test:
name: "python 3.8 lint test"
python_version: "3.8"
- unit_tests:
name: "linux python 3.6 unit tests"
python_version: "3.6"
- unit_tests:
name: "linux python 3.7 unit tests"
python_version: "3.7"
- unit_tests:
name: "linux python 3.8 unit tests"
python_version: "3.8"
codecov: true
1 change: 1 addition & 0 deletions docs/source/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Changelog
* Added n_jobs as parameter for AutoClassificationSearch and AutoRegressionSearch :pr:`403`
* Changed colors of confusion matrix to shades of blue and updated axis order to match scikit-learn's :pr:`426`
* Added PipelineBase graph and feature_importance_graph methods, moved from previous location :pr:`423`
* Added support for python 3.8 :pr:`462`
* Fixes
* Fixed ROC and confusion matrix plots not being calculated if user passed own additional_objectives :pr:`276`
* Fixed ReadtheDocs FileNotFoundError exception for fraud dataset :pr:`439`
Expand Down

0 comments on commit d01cbeb

Please sign in to comment.