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

Skip to content

Commit 69b8cde

Browse files
authored
Merge pull request #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

0 commit comments

Comments
 (0)
0