Skip to content

Commit c62fc85

Browse files
Add python3.9 to tox and workflow (#134)
* Add python3.9 to tox and workflow * Update README [no ci]
1 parent f6692b4 commit c62fc85

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
python-version: [3.6, 3.7, 3.8]
16+
python-version: [3.6, 3.7, 3.8, 3.9]
1717
env:
1818
OS: ubuntu-latest
1919
PYTHON: "3.8"

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
[![Python 3.6](https://img.shields.io/badge/python-3.6-blue.svg)](https://www.python.org/downloads/release/python-360/)
66
[![Python 3.7](https://img.shields.io/badge/python-3.7-blue.svg)](https://www.python.org/downloads/release/python-370/)
77
[![Python 3.8](https://img.shields.io/badge/python-3.8-blue.svg)](https://www.python.org/downloads/release/python-380/)
8+
[![Python 3.9](https://img.shields.io/badge/python-3.9-blue.svg)](https://www.python.org/downloads/release/python-390/)
89
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/ambv/black)
910

1011
# testbook

tox.ini

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
[tox]
22
skipsdist = true
3-
envlist = py{36,37,38}, flake8, dist, manifest, docs
3+
envlist = py{36,37,38,39}, flake8, dist, manifest, docs
44

55
[gh-actions]
66
python =
77
3.6: py36
88
3.7: py37
99
3.8: py38, flake8, dist, manifest
10+
3.9: py39
1011

1112
# Linters
1213
[testenv:flake8]
@@ -57,6 +58,7 @@ basepython =
5758
py36: python3.6
5859
py37: python3.7
5960
py38: python3.8
61+
py39: python3.9
6062
flake8: python3.8
6163
manifest: python3.8
6264
dist: python3.8

0 commit comments

Comments
 (0)