Skip to content

Commit 32dbc21

Browse files
committed
Merge branch 'master' into hxi
2 parents 2c3b24c + 17f8ecf commit 32dbc21

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/pull_request.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99

1010
strategy:
1111
matrix:
12-
python-version: [3.6, 3.7, 3.8]
12+
python-version: [3.7, 3.8, 3.9]
1313
os: [ubuntu-latest, windows-latest, macos-latest]
1414

1515
steps:

.github/workflows/push.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99

1010
strategy:
1111
matrix:
12-
python-version: [3.6, 3.7, 3.8]
12+
python-version: [3.7, 3.8, 3.9]
1313
os: [ubuntu-latest, windows-latest, macos-latest]
1414

1515
steps:

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ and run it locally.
3030
These are prerequisites for an environment required for a contributor to
3131
be able to work on TabPy changes:
3232

33-
- Python 3.6, 3.7 or 3.8:
33+
- Python 3.7, 3.8 or 3.9:
3434
- To see which version of Python you have installed, run `python --version`.
3535
- git
3636
- Node.js for npm packages - install from <https://nodejs.org>.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/tabpy?label=PyPI%20Python%20versions)
1212
[![PyPI version](https://badge.fury.io/py/tabpy.svg)](https://pypi.python.org/pypi/tabpy/)
1313

14-
[![Deploy](https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy)
14+
[![Deploy](https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy?template=https://github.com/tableau/tabpy)
1515

1616
TabPy (the Tableau Python Server) is an Analytics Extension implementation which
1717
expands Tableau's capabilities by allowing users to execute Python scripts and

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ def read(fname):
3939
"Intended Audience :: Developers",
4040
"Intended Audience :: Science/Research",
4141
"License :: OSI Approved :: MIT License",
42-
"Programming Language :: Python :: 3.6",
4342
"Programming Language :: Python :: 3.7",
4443
"Programming Language :: Python :: 3.8",
44+
"Programming Language :: Python :: 3.9",
4545
"Topic :: Scientific/Engineering",
4646
"Topic :: Scientific/Engineering :: Information Analysis",
4747
"Operating System :: Microsoft :: Windows",
@@ -60,7 +60,7 @@ def read(fname):
6060
"tabpy_server/common/default.conf",
6161
]
6262
},
63-
python_requires=">=3.6",
63+
python_requires=">=3.7",
6464
license="MIT",
6565
# Note: many of these required packages are included in base python
6666
# but are listed here because different linux distros use custom

0 commit comments

Comments
 (0)