Skip to content

Commit 803aca2

Browse files
committed
add python 3.9 support
1 parent f9b0e75 commit 803aca2

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

‎.github/workflows/pythonpackage.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
18-
python-version: [3.5, 3.6, 3.7, 3.8]
18+
python-version: [3.5, 3.6, 3.7, 3.8, 3.9]
1919

2020
steps:
2121
- uses: actions/checkout@v2

‎doc/source/changes.rst

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ Changelog
77

88
* git.Commit objects now have a ``replace`` method that will return a
99
copy of the commit with modified attributes.
10+
* Add python 3.9 support
1011

1112
3.1.13
1213
======

‎setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,7 @@ def build_py_modules(basedir, excludes=[]):
126126
"Programming Language :: Python :: 3.5",
127127
"Programming Language :: Python :: 3.6",
128128
"Programming Language :: Python :: 3.7",
129-
"Programming Language :: Python :: 3.8"
129+
"Programming Language :: Python :: 3.8",
130+
"Programming Language :: Python :: 3.9"
130131
]
131132
)

‎tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py34,py35,py36,py37,py38,flake8
2+
envlist = py34,py35,py36,py37,py38,py39,flake8
33

44
[testenv]
55
commands = python -m unittest --buffer {posargs}

0 commit comments

Comments
 (0)