-
Notifications
You must be signed in to change notification settings - Fork 180
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## 08 (October 2021) * See dashboards in a workbook * Add shapes property * Add custom sql * Drop python 2, add up through 3.9 Co-authored-by: Tyler Doyle <[email protected]> Co-authored-by: r-richmond <[email protected]> Co-authored-by: Russell Hay <[email protected]> Co-authored-by: Jared Dominguez <[email protected]> Co-authored-by: Kernpunkt Analytics <[email protected]> Co-authored-by: doulam <[email protected]> Co-authored-by: Kevin Glinski <[email protected]> Co-authored-by: Russell Hay <[email protected]> Co-authored-by: Dave Hagen <[email protected]> Co-authored-by: martin dertz <[email protected]> Co-authored-by: dev-mkc19 <[email protected]> Co-authored-by: Jared Dominguez <[email protected]> Co-authored-by: Ben Lower <[email protected]> Co-authored-by: Patrick Carlson <[email protected]> Co-authored-by: Graeme Britz <[email protected]> Co-authored-by: Jac Fitzgerald <[email protected]>
- Loading branch information
1 parent
58777f7
commit 805957e
Showing
36 changed files
with
7,901 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions | ||
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | ||
|
||
name: Python package | ||
|
||
on: | ||
push: | ||
paths-ignore: | ||
- 'docs/**' | ||
pull_request: | ||
branches: '*' | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
python-version: [3.7, 3.8, 3.9] | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi | ||
- name: Test | ||
run: | | ||
python setup.py test | ||
|
||
lint: | ||
|
||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
python-version: [3.9] | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
python -m pip install pycodestyle | ||
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi | ||
- name: Lint with pycodestyle | ||
run: | | ||
pycodestyle tableaudocumentapi test samples | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ language: python | |
cache: pip | ||
|
||
python: | ||
|
||
- "3.6" # EOL 23 Dec 2021 | ||
- "3.7" | ||
- "3.8" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<div class="search-container form-group has-feedback"> | ||
<form id="docs-search"> | ||
<input type="search" id="search-input" class="custom-search form-control" placeholder="Search the docs..." search-url="{{ site.baseurl}}/docs/search.html"> | ||
<span class="glyphicon glyphicon-search form-control-feedback"></span> | ||
</form> | ||
</div> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
--- | ||
layout: search | ||
--- | ||
|
||
<!DOCTYPE html> | ||
<html> | ||
|
||
<head> | ||
{% include head.html %} | ||
<script type="text/javascript"> | ||
var search_blob = { | ||
{% for page in site.pages %} | ||
{% if page.indexed_by_search != false %} | ||
"{{ site.baseurl }}{{ page.url }}": { | ||
"title": {{ page.title | escape | jsonify }}, | ||
"content": {{ page.content | remove_first: '* TOC' | replace_first:':toc',':class="blank"' | markdownify | strip_html | normalize_whitespace | jsonify }} | ||
}{% unless forloop.last %},{% endunless %} | ||
{% endif %} | ||
{% endfor %} | ||
}; | ||
</script> | ||
|
||
<script src="{{ site.baseurl }}/js/lunr.min.js"></script> | ||
<script src="{{ site.baseurl }}/js/search.js"></script> | ||
</head> | ||
|
||
<body> | ||
<div class="container"> | ||
{% include header.html %} | ||
{% include docs_menu.html %} | ||
|
||
<div class="content .col-xs-12 .col-sm-8 .col-md-9"> | ||
<h1 id="searchHeading"></h1> | ||
<br /> | ||
<div id="searchResultsContainer"> | ||
<p>Loading search results...</p> | ||
</div> | ||
|
||
{% include footer.html %} | ||
</div> | ||
</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
title: Search | ||
layout: search | ||
--- | ||
|
Oops, something went wrong.