mirror of
https://github.com/varun-r-mallya/py-libp2p.git
synced 2026-02-12 16:10:57 +00:00
Add python 3.10 support
This commit is contained in:
@ -72,6 +72,12 @@ jobs:
|
|||||||
- image: circleci/python:3.9
|
- image: circleci/python:3.9
|
||||||
environment:
|
environment:
|
||||||
TOXENV: py39-core
|
TOXENV: py39-core
|
||||||
|
py310-core:
|
||||||
|
<<: *common
|
||||||
|
docker:
|
||||||
|
- image: circleci/python:3.10
|
||||||
|
environment:
|
||||||
|
TOXENV: py310-core
|
||||||
pypy3-core:
|
pypy3-core:
|
||||||
<<: *common
|
<<: *common
|
||||||
docker:
|
docker:
|
||||||
|
|||||||
1
setup.py
1
setup.py
@ -77,6 +77,7 @@ setup(
|
|||||||
'Programming Language :: Python :: 3.7',
|
'Programming Language :: Python :: 3.7',
|
||||||
'Programming Language :: Python :: 3.8',
|
'Programming Language :: Python :: 3.8',
|
||||||
'Programming Language :: Python :: 3.9',
|
'Programming Language :: Python :: 3.9',
|
||||||
|
'Programming Language :: Python :: 3.10',
|
||||||
'Programming Language :: Python :: Implementation :: PyPy',
|
'Programming Language :: Python :: Implementation :: PyPy',
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
|||||||
3
tox.ini
3
tox.ini
@ -1,6 +1,6 @@
|
|||||||
[tox]
|
[tox]
|
||||||
envlist=
|
envlist=
|
||||||
py{36,37,38,py3}-core
|
py{36,37,38,39,310,py3}-core
|
||||||
lint
|
lint
|
||||||
docs
|
docs
|
||||||
|
|
||||||
@ -30,6 +30,7 @@ basepython =
|
|||||||
py37: python3.7
|
py37: python3.7
|
||||||
py38: python3.8
|
py38: python3.8
|
||||||
py39: python3.9
|
py39: python3.9
|
||||||
|
py310: python3.10
|
||||||
pypy3: pypy3
|
pypy3: pypy3
|
||||||
extras=
|
extras=
|
||||||
test
|
test
|
||||||
|
|||||||
Reference in New Issue
Block a user