Skip to content

Commit 7560fd9

Browse files
committed
Remove py 3.5 from docs and testing.
1 parent 93c7ab4 commit 7560fd9

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

.github/workflows/actions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
python-version: [3.5, 3.6, 3.7, 3.8]
14+
python-version: [3.6, 3.7, 3.8]
1515
steps:
1616
- uses: actions/checkout@v2
1717
- name: Set up Python ${{ matrix.python-version }}

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ environment to distributed training/tuning on Cloud.
1616

1717
#### Requirements
1818

19-
- Python >= 3.5
19+
- Python >= 3.6
2020
- [A Google Cloud project](https://cloud.google.com/ai-platform/docs/getting-started-keras#set_up_your_project)
2121
- An
2222
[authenticated GCP account](https://cloud.google.com/ai-platform/docs/getting-started-keras#authenticate_your_gcp_account)
@@ -118,7 +118,7 @@ mkdir tensorflow_cloud
118118
cd tensorflow_cloud
119119
```
120120

121-
1. Make sure you have `python >= 3.5`
121+
1. Make sure you have `python >= 3.6`
122122

123123
```shell
124124
python -V

src/python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@
5151
"Intended Audience :: Science/Research",
5252
"License :: OSI Approved :: Apache Software License",
5353
"Programming Language :: Python :: 3",
54-
"Programming Language :: Python :: 3.5",
5554
"Programming Language :: Python :: 3.6",
5655
"Programming Language :: Python :: 3.7",
56+
"Programming Language :: Python :: 3.8",
5757
"Topic :: Scientific/Engineering",
5858
"Topic :: Scientific/Engineering :: Artificial Intelligence",
5959
"Topic :: Software Development",

src/python/tensorflow_cloud/core/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ environment to distributed training/tuning on Cloud.
1010

1111
#### Requirements
1212

13-
- Python >= 3.5
13+
- Python >= 3.6
1414
- [A Google Cloud project](https://cloud.google.com/ai-platform/docs/getting-started-keras#set_up_your_project)
1515
- An
1616
[authenticated GCP account](https://cloud.google.com/ai-platform/docs/getting-started-keras#authenticate_your_gcp_account)
@@ -112,7 +112,7 @@ mkdir tensorflow_cloud
112112
cd tensorflow_cloud
113113
```
114114

115-
1. Make sure you have `python >= 3.5`
115+
1. Make sure you have `python >= 3.6`
116116

117117
```shell
118118
python -V

src/python/tensorflow_cloud/tuner/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ as a backend to get suggestions of hyperparameters and run trials.
1313

1414
### Requirements
1515

16-
- Python >= 3.5
16+
- Python >= 3.6
1717
- Tensorflow >= 2.0
1818
- [Set up your Google Cloud project](https://cloud.google.com/ai-platform/docs/getting-started-keras#set_up_your_project)
1919
- [Authenticate your GCP account](https://cloud.google.com/ai-platform/docs/getting-started-keras#authenticate_your_gcp_account)
@@ -86,7 +86,7 @@ you can skip the setup and authentication steps and start from step 8.
8686
cd tuner
8787
```
8888

89-
1. Make sure you have `python >= 3.5`
89+
1. Make sure you have `python >= 3.6`
9090

9191
```shell
9292
python -V

src/python/tensorflow_cloud/tuner/cloud_fit_readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ well.
1515

1616
### Requirements
1717

18-
- Python >= 3.5
18+
- Python >= 3.6
1919
- Tensorflow >= 2.0
2020
- [Set up your Google Cloud project](https://cloud.google.com/ai-platform/docs/getting-started-keras#set_up_your_project)
2121
- [Authenticate your GCP account](https://cloud.google.com/ai-platform/docs/getting-started-keras#authenticate_your_gcp_account)
@@ -74,7 +74,7 @@ you can skip the setup and authentication steps and start from step 8.
7474
cd cloud_fit
7575
```
7676

77-
1. Make sure you have `python >= 3.5`
77+
1. Make sure you have `python >= 3.6`
7878

7979
```shell
8080
python -V

0 commit comments

Comments
 (0)