8000 Merge pull request #911 from vogelsgesang/remove-python3.5 · mattholy/server-client-python@69b8cde · GitHub
[go: up one dir, main page]

Skip to content

Commit 69b8cde

Browse files
authored
Merge pull request tableau#911 from vogelsgesang/remove-python3.5
Stop supporting Python 3.5
2 parents acda7f5 + 168638c commit 69b8cde

25 files changed

+25
-25
lines changed

.github/workflows/run-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
fail-fast: false
99
matrix:
1010
os: [ubuntu-latest, macos-latest, windows-latest]
11-
python-version: [3.5, 3.6, 3.7, 3.8, 3.9, 3.10.0-rc.2]
11+
python-version: [3.6, 3.7, 3.8, 3.9, 3.10.0-rc.2]
1212

1313
runs-on: ${{ matrix.os }}
1414

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

samples/kill_all_jobs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
####
22
# This script demonstrates how to kill all of the running jobs
33
#
4-
# To run the script, you must have installed Python 3.5 or later.
4+
# To run the script, you must have installed Python 3.6 or later.
55
####
66

77
import argparse

samples/list.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
####
22
# This script demonstrates how to list all of the workbooks or datasources
33
#
4-
# To run the script, you must have installed Python 3.5 or later.
4+
# To run the script, you must have installed Python 3.6 or later.
55
####
66

77
import argparse

samples/login.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
####
22
# This script demonstrates how to log in to Tableau Server Client.
33
#
4-
# To run the script, you must have installed Python 3.5 or later.
4+
# To run the script, you must have installed Python 3.6 or later.
55
####
66

77
import argparse

samples/metadata_query.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
####
22
# This script demonstrates how to use the metadata API to query information on a published data source
33
#
4-
# To run the script, you must have installed Python 3.5 or later.
4+
# To run the script, you must have installed Python 3.6 or later.
55
####
66

77
import argparse

samples/move_workbook_projects.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# a workbook that matches a given name and update it to be in
55
# the desired project.
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/move_workbook_sites.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# a workbook that matches a given name, download the workbook,
55
# and then publish it to the destination site.
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/publish_datasource.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# more information on personal access tokens, refer to the documentations:
1616
# (https://help.tableau.com/current/server/en-us/security_personal_access_tokens.htm)
1717
#
18-
# To run the script, you must have installed Python 3.5 or later.
18+
# To run the script, you must have installed Python 3.6 or later.
1919
####
2020

2121
import argparse

samples/publish_workbook.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# For more information, refer to the documentations on 'Publish Workbook'
1212
# (https://onlinehelp.tableau.com/current/api/rest_api/en-us/help.htm)
1313
#
14-
# To run the script, you must have installed Python 3.5 or later.
14+
# To run the script, you must have installed Python 3.6 or later.
1515
####
1616

1717
import argparse

samples/query_permissions.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 query for 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
# Example usage: 'python query_permissions.py -s https://10ax.online.tableau.com --site
66
# devSite123 -u tabby@tableau.com workbook b4065286-80f0-11ea-af1b-cb7191f48e45'

samples/refresh.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
####
22
# This script demonstrates how to use trigger a refresh on a datasource or workbook
33
#
4-
# To run the script, you must have installed Python 3.5 or later.
4+
# To run the script, you must have installed Python 3.6 or later.
55
####
66

77
import argparse

samples/refresh_tasks.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 query extract refresh tasks and run them as needed.
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/set_http_options.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 set http options. It will set the option
33
# to not verify SSL certificate, and query all workbooks 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

samples/set_refresh_schedule.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 set the refresh schedule for
33
# a workbook or datasource.
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/update_connection.py

Lines changed: 1 addition & 1 deletion
< 3180 /table>

0 commit comments

Comments
 (0)
0
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
####
22
# This script demonstrates how to update a connections credentials on a server to embed the credentials
33
#
4-
# To run the script, you must have installed Python 3.5 or later.
4+
# To run the script, you must have installed Python 3.6 or later.
55
####
66

77
import argparse