8000 Development by jacalata · Pull Request #1114 · tableau/server-client-python · GitHub
[go: up one dir, main page]

Skip to content

Development #1114

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 25 commits into from
Sep 20, 2022
Merged
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
c640ad3
Clean up hidden_views by making it an attribute of WorkbookItem (#617)
scuml Nov 9, 2021
8212e66
Jorwoods/type hint revisions (#956)
jorwoods Nov 11, 2021
06348fa
WIP: Enable Black for CI and add as dependency (#935)
bcantoni Jan 28, 2022
60b07dc
Jorwoods/type hint data alert (#934)
jorwoods Jan 28, 2022
7f2e449
Jorwoods/type hint favorites (#936)
jorwoods Jan 28, 2022
2596b64
Jorwoods/type hint flows (#937)
jorwoods Jan 28, 2022
608fe8a
Jorwoods/type hint groups (#938)
jorwoods Jan 28, 2022
a5ff59b
Jorwoods/type hint permissions (#940)
jorwoods Jan 28, 2022
ff958b4
Jorwoods/type hint projects (#941)
jorwoods Jan 28, 2022
f8bbf56
Type hint site (#942)
jorwoods Jan 28, 2022
4e65da7
Type hint subscriptions (#943)
jorwoods Jan 28, 2022
222315e
Type hint webhooks (#945)
jorwoods Jan 28, 2022
10f70d5
Add back old format for setting hidden views on publish (#955)
jacalata Mar 17, 2022
fef2ced
Jorwoods/quota tiers allow null (#1015)
jorwoods Mar 30, 2022
3c9aff0
add publish to pypi action (#1017)
jacalata Apr 5, 2022
11e92a8
Jac/export sample fix (#1034)
jacalata May 23, 2022
4bfbe03
Jac/redact embedded creds (#1035)
jacalata May 26, 2022
6ff2bb7
jorwood: Do not eagerly fetch content when a stream was requested
jacalata Jun 1, 2022
9570eaa
default permissions (#1054)
jacalata Jun 4, 2022
096ea7a
Jac/git actions (#1077)
jacalata Jul 28, 2022
3bd0440
Add version awareness to site create/update methods (#1068)
jacalata Aug 5, 2022
b41c2d1
Jac/user import (#1086)
jacalata Aug 27, 2022
511cd83
Jac/client version header (#1075)
jacalata Aug 31, 2022
c1295c6
Use explicit None identity check for datasource updates (#1099)
jorwoods Sep 1, 2022
4c11c9d
update bad merge, format
jacalata Sep 20, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,11 @@
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
# not yet sure how to move this to pyproject.toml
packages=['tableauserverclient',
'tableauserverclient.helpers',
'tableauserverclient.models',
'tableauserverclient.server',
'tableauserverclient.server.endpoint'],
packages=[
"tableauserverclient",
"tableauserverclient.helpers",
"tableauserverclient.models",
"tableauserverclient.server",
"tableauserverclient.server.endpoint",
],
)
0