Add Support for Python 3.9

This commit is contained in:
Lukas Kämmerling 2020-12-21 11:47:04 +01:00
parent d2f06b7f46
commit afa2f83559
4 changed files with 6 additions and 3 deletions

View File

@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:
matrix: matrix:
python-version: [3.5, 3.6, 3.7, 3.8] python-version: [3.5, 3.6, 3.7, 3.8, 3.9]
steps: steps:
- name: Checkout repo - name: Checkout repo
uses: actions/checkout@v2 uses: actions/checkout@v2

View File

@ -30,7 +30,7 @@ features (it's not a must though).
Python version and libraries Python version and libraries
============================ ============================
* Python 3.5, 3.6, 3.7, 3.8: * Python 3.5, 3.6, 3.7, 3.8, 3.9:
Ryu supports multiple Python versions. CI tests on GitHub Actions is running Ryu supports multiple Python versions. CI tests on GitHub Actions is running
on these versions. on these versions.

View File

@ -17,6 +17,8 @@ classifier =
Programming Language :: Python :: 3.5 Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6 Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7 Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Operating System :: Unix Operating System :: Unix
keywords = keywords =
openflow openflow

View File

@ -1,5 +1,5 @@
[tox] [tox]
envlist = py35,py36,py37,py38,pypy,pycodestyle,autopep8 envlist = py35,py36,py37,py38,py39,pypy,pycodestyle,autopep8
[gh-actions] [gh-actions]
python = python =
@ -7,6 +7,7 @@ python =
3.6: py36, pycodestyle, autopep8 3.6: py36, pycodestyle, autopep8
3.7: py37 3.7: py37
3.8: py38 3.8: py38
3.9: py39
[testenv] [testenv]
deps = deps =