Skip to content

Commit 067bd8c

Browse files
author
Ming
committed
Python 3.9
1 parent 430ed01 commit 067bd8c

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

.github/workflows/CI.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
max-parallel: 4
1515
matrix:
16-
python-version: [2.7, 3.5, 3.6, 3.7, 3.8]
16+
python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9]
1717

1818
steps:
1919
- uses: actions/checkout@v2
@@ -27,6 +27,6 @@ jobs:
2727
pip install tox
2828
pip install codecov
2929
30-
- name: Run Tests on Python ${{ matrix.python-version }}
30+
- name: Run Tests on Python ${{ matrix.python-version }}
3131
run: |
3232
TOXENV=py$(echo ${{ matrix.python-version }} | sed 's/\.//') tox

Makefile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
.PHONY: all build clean install test
2+
13
PYTHON=python
24

35
all: build
@@ -12,3 +14,6 @@ clean:
1214

1315
install:
1416
$(PYTHON) setup.py install
17+
18+
test:
19+
TOXENV=py39 tox

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Features
1616
--------
1717

1818
- Support Client part of **CAS** version 1.0, 2.0 and 3.0.
19-
- Support Python 2.7, 3.5, 3.6, 3.7, 3.8
19+
- Support Python 2.7, 3.5, 3.6, 3.7, 3.8, 3.9
2020

2121

2222
Documentation

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist=
3-
py{27,35,36,37,38}
3+
py{27,35,36,37,38,39}
44
flake8
55
isort
66

0 commit comments

Comments
 (0)