Skip to content

Commit

Permalink
Remove python 3.5 support (kubeflow#463)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomcli authored Feb 10, 2021
1 parent 99e506c commit 624a1f8
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
18 changes: 9 additions & 9 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,26 +14,26 @@

matrix:
include:
- name: "Unit tests, Python 3.5"
- name: "Unit tests, Python 3.6"
language: python
python: "3.5"
env: TOXENV=py35
python: "3.6"
env: TOXENV=py36
install: &0
- python3 -m pip install -e sdk/python
script: &1
- VENV=$VIRTUAL_ENV make unit_test
- name: "Unit tests, Python 3.6"
language: python
python: "3.6"
env: TOXENV=py36
install: *0
script: *1
- name: "Unit tests, Python 3.7"
language: python
python: "3.7"
env: TOXENV=py37
install: *0
script: *1
- name: "Unit tests, Python 3.8"
language: python
python: "3.8"
env: TOXENV=py38
install: *0
script: *1
- name: "Progress report on compiling KFP DSL test scripts"
language: python
python: "3.7"
Expand Down
2 changes: 1 addition & 1 deletion sdk/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ adding the `TektonCompiler` and the `TektonClient`:

## Project Prerequisites

- Python: `3.5.3` or later
- Python: `3.6` or later
- Tekton: [`v0.16.3`](https://github.com/tektoncd/pipeline/releases/tag/v0.16.3) or [later](https://github.com/tektoncd/pipeline/releases/latest)
- Tekton CLI: [`0.11.0`](https://github.com/tektoncd/cli/releases/tag/v0.11.0)
- Kubeflow Pipelines: [KFP with Tekton backend](/guides/kfp_tekton_install.md)
Expand Down
2 changes: 1 addition & 1 deletion sdk/python/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ can be found in the [SDK README](/sdk/README.md)

## Development Prerequisites

1. [`Python`](https://www.python.org/downloads/): version `3.5.3` or later (new code must maintain compatibility with `3.5`)
1. [`Python`](https://www.python.org/downloads/): version `3.6` or later (new code must maintain compatibility with `3.6`)
2. [`Kubernetes` Cluster](https://kubernetes.io/): version `1.18` ([required by Kubeflow](https://www.kubeflow.org/docs/started/k8s/overview/) and Tekton `0.20`)
3. [`kubectl` CLI](https://kubernetes.io/docs/tasks/tools/install-kubectl/): required to deploy Tekton pipelines to Kubernetes cluster
4. [`Tekton` Deployment](https://github.com/tektoncd/pipeline/releases/tag/v0.16.3/): version `0.16.3` or greater, required for end-to-end testing
Expand Down

0 comments on commit 624a1f8

Please sign in to comment.