mirror of
https://github.com/faucetsdn/ryu.git
synced 2025-08-06 22:57:17 +02:00
Add Support for Python 3.9
This commit is contained in:
parent
d2f06b7f46
commit
afa2f83559
2
.github/workflows/tests-unit.yml
vendored
2
.github/workflows/tests-unit.yml
vendored
@ -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
|
||||||
|
@ -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.
|
||||||
|
@ -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
|
||||||
|
3
tox.ini
3
tox.ini
@ -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 =
|
||||||
|
Loading…
Reference in New Issue
Block a user