Skip to content

Commit

Permalink
Merge pull request #78 from bryantbhowell/5.0.7
Browse files Browse the repository at this point in the history
5.0.7
  • Loading branch information
Bryant Howell authored Dec 9, 2019
2 parents f216a5e + e44953e commit 875ddf1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
setup(
name='tableau_tools',
python_requires='>=3.6',
version='5.0.6',
version='5.0.7',
packages=['tableau_tools', 'tableau_tools.tableau_rest_api', 'tableau_tools.tableau_documents',
'tableau_tools.examples', 'tableau_tools.tableau_rest_api.methods'],
url='https://github.com/bryantbhowell/tableau_tools',
Expand Down
6 changes: 3 additions & 3 deletions tableau_rest_api/methods/rest_api_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -1162,7 +1162,7 @@ def __init__(self, server: str, username: str, password: str, site_content_url:
TableauRestApiBase.__init__(self, server=server, username=username, password=password,
site_content_url=site_content_url)
self.set_tableau_server_version('10.4')
self.url_filters = UrlFilter27()
self.url_filters = UrlFilter27

class TableauRestApiBase28(TableauRestApiBase27):
def __init__(self, server: str, username: str, password: str, site_content_url: Optional[str] = ""):
Expand All @@ -1189,7 +1189,7 @@ def __init__(self, server: str, username: str, password: str, site_content_url:
TableauRestApiBase.__init__(self, server=server, username=username, password=password,
site_content_url=site_content_url)
self.set_tableau_server_version('2018.2')
self.url_filters = UrlFilter31()
self.url_filters = UrlFilter31

class TableauRestApiBase32(TableauRestApiBase31):
def __init__(self, server: str, username: str, password: str, site_content_url: Optional[str] = ""):
Expand All @@ -1202,7 +1202,7 @@ def __init__(self, server: str, username: str, password: str, site_content_url:
TableauRestApiBase.__init__(self, server=server, username=username, password=password,
site_content_url=site_content_url)
self.set_tableau_server_version('2019.1')
self.url_filters = UrlFilter33()
self.url_filters = UrlFilter33

def get_published_project_object(self, project_name_or_luid: str,
project_xml_obj: Optional[ET.Element] = None) -> Project33:
Expand Down

0 comments on commit 875ddf1

Please sign in to comment.