8000 Stop supporting Python 3.5 · tableau/server-client-python@cbf6904 · GitHub
[go: up one dir, main page]

Skip to content

Commit cbf6904

Browse files
committed
Stop supporting Python 3.5
Python 3.5 is already end-of-life and no longer receives security patches for over a year now. Also, I recently added an f-string because all Python versions which are still in support, also support f-strings. I was unpleasantly surprised when I had to realize that we still claim to support Python 3.5 which doesn't have f-strings...
1 parent acda7f5 commit cbf6904

24 files changed

+24
-24
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Use the Tableau Server Client (TSC) library to increase your productivity as you
88
* Create users and groups.
99
* Query projects, sites, and more.
1010

11-
This repository contains Python source code and sample files. Python versions 3.5 and up are supported.
11+
This repository contains Python source code and sample files. Python versions 3.6 and up are supported.
1212

1313
For more information on installing and using TSC, see the documentation:
1414
<https://tableau.github.io/server-client-python/docs/>

samples/add_default_permission.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
####
22
# This script demonstrates how to add default permissions using TSC
3-
# To run the script, you must have installed Python 3.5 and later.
3+
# To run the script, you must have installed Python 3.6 or later.
44
#
55
# In order to demonstrate adding a new default permission, this sample will create
66
# a new project and add a new capability to the new project, for the default "All users" group.

samples/create_group.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# This script demonstrates how to create a group using the Tableau
33
# Server Client.
44
#
5-
# To run the script, you must have installed Python 3.5 or later.
5+
# To run the script, you must have installed Python 3.6 or later.
66
####
77

88

samples/create_project.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# parent_id.
55
#
66
#
7-
# To run the script, you must have installed Python 3.5 or later.
7+
# To run the script, you must have installed Python 3.6 or later.
88
####
99

1010
import argparse

samples/create_schedules.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# This script demonstrates how to create schedules using the Tableau
33
# Server Client.
44
#
5-
# To run the script, you must have installed Python 3.5 or later.
5+
# To run the script, you must have installed Python 3.6 or later.
66
####
77

88

samples/download_view_image.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# For more information, refer to the documentations on 'Query View Image'
66
# (https://onlinehelp.tableau.com/current/api/rest_api/en-us/help.htm)
77
#
8-
# To run the script, you must have installed Python 3.5 or later.
8+
# To run the script, you must have installed Python 3.6 or later.
99
####
1010

1111
import argparse

samples/export.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# This script demonstrates how to export a view using the Tableau
33
# Server Client.
44
#
5-
# To run the script, you must have installed Python 3.5 or later.
5+
# To run the script, you must have installed Python 3.6 or later.
66
####
77

88
import argparse

samples/export_wb.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
# You will need to do `pip install PyPDF2` to use this sample.
66
#
7-
# To run the script, you must have installed Python 3.5 or later.
7+
# To run the script, you must have installed Python 3.6 or later.
88
####
99

1010

samples/filter_sort_groups.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# This script demonstrates how to filter and sort groups using the Tableau
33
# Server Client.
44
#
5-
# To run the script, you must have installed Python 3.5 or later.
5+
# To run the script, you must have installed Python 3.6 or later.
66
####
77

88

samples/filter_sort_projects.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# This script demonstrates how to use the Tableau Server Client
33
# to filter and sort on the name of the projects present on site.
44
#
5-
# To run the script, you must have installed Python 3.5 or later.
5+
# To run the script, you must have installed Python 3.6 or later.
66
####
77

88
import argparse

0 commit comments

Comments
 (0)
0