Merge branch 'py38'
This commit is contained in:
commit
e6ac67e0c0
|
@ -23,6 +23,9 @@ matrix:
|
||||||
- python: 3.7
|
- python: 3.7
|
||||||
dist: xenial
|
dist: xenial
|
||||||
script: tox -e py37-coverage
|
script: tox -e py37-coverage
|
||||||
|
- python: 3.8
|
||||||
|
dist: bionic
|
||||||
|
script: tox -e py38-coverage
|
||||||
- python: nightly
|
- python: nightly
|
||||||
script: tox -e py-coverage
|
script: tox -e py-coverage
|
||||||
- python: 3.6
|
- python: 3.6
|
||||||
|
|
|
@ -26,9 +26,10 @@ or the docs/ subdirectory.
|
||||||
|
|
||||||
## License, Compatibility
|
## License, Compatibility
|
||||||
|
|
||||||
This library is released under the MIT license, see LICENSE for details.
|
Magic-Wormhole is released under the MIT license, see the `LICENSE` file for details.
|
||||||
|
|
||||||
This library is compatible with python2.7, 3.5, 3.6, and 3.7.
|
This library is compatible with Python 3.5 and higher (tested against 3.5,
|
||||||
|
3.6, 3.7, and 3.8). It also still works with Python 2.7.
|
||||||
|
|
||||||
## Packaging, Installation
|
## Packaging, Installation
|
||||||
|
|
||||||
|
|
8
setup.py
8
setup.py
|
@ -8,6 +8,14 @@ trove_classifiers = [
|
||||||
"Development Status :: 4 - Beta",
|
"Development Status :: 4 - Beta",
|
||||||
"Environment :: Console",
|
"Environment :: Console",
|
||||||
"License :: OSI Approved :: MIT License",
|
"License :: OSI Approved :: MIT License",
|
||||||
|
"Programming Language :: Python :: 2",
|
||||||
|
"Programming Language :: Python :: 2.7",
|
||||||
|
"Programming Language :: Python :: 3",
|
||||||
|
"Programming Language :: Python :: 3.5",
|
||||||
|
"Programming Language :: Python :: 3.6",
|
||||||
|
"Programming Language :: Python :: 3.7",
|
||||||
|
"Programming Language :: Python :: 3.8",
|
||||||
|
"Programming Language :: Python :: Implementation :: CPython",
|
||||||
"Topic :: Security :: Cryptography",
|
"Topic :: Security :: Cryptography",
|
||||||
"Topic :: System :: Networking",
|
"Topic :: System :: Networking",
|
||||||
"Topic :: System :: Systems Administration",
|
"Topic :: System :: Systems Administration",
|
||||||
|
|
4
tox.ini
4
tox.ini
|
@ -4,8 +4,8 @@
|
||||||
# and then run "tox" from this directory.
|
# and then run "tox" from this directory.
|
||||||
|
|
||||||
[tox]
|
[tox]
|
||||||
# useful envs: py27-nodilate, py35, py36, py37, pypy, flake8
|
# useful envs: py27-nodilate, py35, py36, py37, py38, pypy, flake8
|
||||||
envlist = {py27-nodilate,py35,py36,py37}
|
envlist = {py27-nodilate,py35,py36,py37,py38}
|
||||||
skip_missing_interpreters = True
|
skip_missing_interpreters = True
|
||||||
minversion = 2.4.0
|
minversion = 2.4.0
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user