Skip to content

Commit 08e1d0d

Browse files
authored
Added support for Python version 3.9. (#1005)
1 parent c7ab508 commit 08e1d0d

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/build_and_deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
python-version: ['3.6', '3.7']
15+
python-version: ['3.6', '3.7', '3.9']
1616

1717
steps:
1818
- uses: actions/checkout@v3

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -218,9 +218,8 @@ def run_tests(self):
218218
tests_require=[
219219
'absl-py>=0.10.0',
220220
'mock>=2.0.0',
221-
# Remove max version here after we drop Python 2 support.
222-
'pandas>=0.22.0,<0.25.0',
223-
'numpy<1.17.0',
221+
'pandas>=0.22.0',
222+
'numpy',
224223
'pytest>=2.9.2',
225224
'pytest-cov>=2.2.1',
226225
],

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
[tox]
2-
envlist = py36,py37
2+
envlist = py36,py37,py39
33

44
[gh-actions]
55
python =
66
3.6: py36
77
3.7: py37
8+
3.9: py39
89

910
[testenv]
1011
deps = -r{toxinidir}/test_reqs.txt

0 commit comments

Comments
 (0)