File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 12
12
runs-on : ubuntu-latest
13
13
strategy :
14
14
matrix :
15
- python-version : ['3.6', '3.7']
15
+ python-version : ['3.6', '3.7', '3.9' ]
16
16
17
17
steps :
18
18
- uses : actions/checkout@v3
Original file line number Diff line number Diff line change @@ -218,9 +218,8 @@ def run_tests(self):
218
218
tests_require = [
219
219
'absl-py>=0.10.0' ,
220
220
'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' ,
224
223
'pytest>=2.9.2' ,
225
224
'pytest-cov>=2.2.1' ,
226
225
],
Original file line number Diff line number Diff line change 1
1
[tox]
2
- envlist = py36,py37
2
+ envlist = py36,py37,py39
3
3
4
4
[gh-actions]
5
5
python =
6
6
3.6: py36
7
7
3.7: py37
8
+ 3.9: py39
8
9
9
10
[testenv]
10
11
deps = -r{toxinidir}/test_reqs.txt
You can’t perform that action at this time.
0 commit comments