Skip to content

Commit afa2f83

Browse files
committed
Add Support for Python 3.9
1 parent d2f06b7 commit afa2f83

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

.github/workflows/tests-unit.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
python-version: [3.5, 3.6, 3.7, 3.8]
11+
python-version: [3.5, 3.6, 3.7, 3.8, 3.9]
1212
steps:
1313
- name: Checkout repo
1414
uses: actions/checkout@v2

CONTRIBUTING.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ features (it's not a must though).
3030

3131
Python version and libraries
3232
============================
33-
* Python 3.5, 3.6, 3.7, 3.8:
33+
* Python 3.5, 3.6, 3.7, 3.8, 3.9:
3434

3535
Ryu supports multiple Python versions. CI tests on GitHub Actions is running
3636
on these versions.

setup.cfg

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ classifier =
1717
Programming Language :: Python :: 3.5
1818
Programming Language :: Python :: 3.6
1919
Programming Language :: Python :: 3.7
20+
Programming Language :: Python :: 3.8
21+
Programming Language :: Python :: 3.9
2022
Operating System :: Unix
2123
keywords =
2224
openflow

tox.ini

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
[tox]
2-
envlist = py35,py36,py37,py38,pypy,pycodestyle,autopep8
2+
envlist = py35,py36,py37,py38,py39,pypy,pycodestyle,autopep8
33

44
[gh-actions]
55
python =
66
3.5: py35
77
3.6: py36, pycodestyle, autopep8
88
3.7: py37
99
3.8: py38
10+
3.9: py39
1011

1112
[testenv]
1213
deps =

0 commit comments

Comments
 (0)