Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update premium primitives test to use python 3.6 #916

Merged
merged 3 commits into from Apr 20, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 4 additions & 4 deletions .circleci/config.yml
Expand Up @@ -110,15 +110,15 @@ jobs:
- image: circleci/buildpack-deps:curl
steps:
- run:
name: "Trigger premium primitives tests for python 3.5"
command: "curl -u ${PP_K}: -d build_parameters[CIRCLE_JOB]=python-35 https://circleci.com/api/v1.1/project/github/FeatureLabs/premium-primitives/tree/master"
name: "Trigger premium primitives tests for python 3.6"
command: "curl -u ${PP_K}: -d build_parameters[CIRCLE_JOB]=python-36 https://circleci.com/api/v1.1/project/github/FeatureLabs/premium-primitives/tree/master"
run_premium_primitives_tests_on_release:
docker:
- image: circleci/buildpack-deps:curl
steps:
- run:
name: "Trigger premium primitives tests for python 3.5 release"
command: "curl -u ${PP_K}: -d build_parameters[CIRCLE_JOB]=python-35-ft-release https://circleci.com/api/v1.1/project/github/FeatureLabs/premium-primitives/tree/master"
name: "Trigger premium primitives tests for python 3.6 release"
command: "curl -u ${PP_K}: -d build_parameters[CIRCLE_JOB]=python-36-ft-release https://circleci.com/api/v1.1/project/github/FeatureLabs/premium-primitives/tree/master"

unit_tests:
working_directory: ~/featuretools
Expand Down
1 change: 1 addition & 0 deletions docs/source/changelog.rst
Expand Up @@ -8,6 +8,7 @@ Changelog
* Fixes
* Use logger.warning to fix deprecated logger.warn (:pr:`871`)
* Changes
* Change premium primitives CI test to Python 3.6 (:pr:`916`)
* Remove Python 3.5 support (:pr:`917`)
* Documentation Changes
* Fix README links to docs (:pr:`872`)
Expand Down