Skip to content

Commit 3dc586a

Browse files
Merge pull request #181 from pydata/add_py27_and_py39
Add py27 and py39 to build matrix.
2 parents 38644f4 + f38b2b4 commit 3dc586a

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.github/workflows/tox.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
max-parallel: 4
1313
matrix:
14-
python-version: [3.6, 3.7, 3.8]
14+
python-version: [2.7, 3.6, 3.7, 3.8, 3.9]
1515
pandas-presence: ['with_pandas', 'without_pandas']
1616
env:
1717
PYTHON_VERSION: ${{ matrix.python-version }}

setup.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,10 @@
3939
"Programming Language :: Python :: 2",
4040
"Programming Language :: Python :: 2.7",
4141
"Programming Language :: Python :: 3",
42-
"Programming Language :: Python :: 3.4",
43-
"Programming Language :: Python :: 3.5",
42+
"Programming Language :: Python :: 3.6",
43+
"Programming Language :: Python :: 3.7",
44+
"Programming Language :: Python :: 3.8",
45+
"Programming Language :: Python :: 3.9",
4446
"Topic :: Scientific/Engineering",
4547
],
4648
)

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = {py36,py37,py38}-{with_pandas,without_pandas}
2+
envlist = {py27,py36,py37,py38,py39}-{with_pandas,without_pandas}
33

44
[testenv]
55
deps=

0 commit comments

Comments
 (0)