Skip to content

Commit

Permalink
Merge pull request #181 from pydata/add_py27_and_py39
Browse files Browse the repository at this point in the history
Add py27 and py39 to build matrix.
  • Loading branch information
matthewwardrop authored Sep 26, 2021
2 parents 38644f4 + f38b2b4 commit 3dc586a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
max-parallel: 4
matrix:
python-version: [3.6, 3.7, 3.8]
python-version: [2.7, 3.6, 3.7, 3.8, 3.9]
pandas-presence: ['with_pandas', 'without_pandas']
env:
PYTHON_VERSION: ${{ matrix.python-version }}
Expand Down
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,10 @@
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering",
],
)
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = {py36,py37,py38}-{with_pandas,without_pandas}
envlist = {py27,py36,py37,py38,py39}-{with_pandas,without_pandas}

[testenv]
deps=
Expand Down

0 comments on commit 3dc586a

Please # to comment.