Merge pull request #449 from meejah/448.eol-pythons

remove old pythons
This commit is contained in:
meejah 2022-08-30 17:30:42 -06:00 committed by GitHub
commit e121ddfc4b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 13 additions and 21 deletions

View File

@ -16,14 +16,6 @@ environment:
- PYTHON: "C:\\Python27-x64"
DISTUTILS_USE_SDK: "1"
TOXENV: py27-nodilate
- PYTHON: "C:\\Python35"
TOXENV: py35
- PYTHON: "C:\\Python35-x64"
TOXENV: py35
- PYTHON: "C:\\Python36"
TOXENV: py36
- PYTHON: "C:\\Python36-x64"
TOXENV: py36
- PYTHON: "C:\\Python37-x64"
TOXENV: py37

View File

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

View File

@ -1,5 +1,9 @@
User-visible changes in "magic-wormhole":
## Upcoming Release
* Python 3.5 and 3.6 are past their EOL date and support is dropped (#448)
## Release 0.12.0 (04-Apr-2020)
* A command like `wormhole send /dev/fd0` can send the contents of the named

View File

@ -37,10 +37,10 @@ and the
Magic-Wormhole is released under the MIT license, see the `LICENSE` file for details.
This library is compatible with Python 3.6 and higher (tested against 3.6,
3.7, 3.8, and 3.9). It also still works with Python 2.7 and 3.5, although
these are no longer supported by upstream libraries like Cryptography, so it
may stop working at any time.
This library is compatible with Python 3.8 and higher (tested against
3.8, and 3.9). It also still works with Python 2.7 although that is no
longer supported by upstream libraries like Cryptography, so it may
stop working at any time.
## Packaging, Installation

View File

@ -312,8 +312,7 @@ trial wormhole.test.test_cli.PregeneratedCode.test_file_tor
```
Developers can also just clone the source tree and run `tox` to run the unit
tests on all supported (and installed) versions of python: 2.7, 3.4, 3.5, and
3.6.
tests on all supported (and installed) versions of python: 2.7, 3.7 and 3.8.
### Troubleshooting
@ -336,8 +335,7 @@ Relevant [xkcd](https://xkcd.com/949/) :-)
This library is released under the MIT license, see LICENSE for details.
This library is compatible with python2.7, 3.4 (non-Windows-only), 3.5, and
3.6 .
This library is compatible with python2.7, 3.7 and 3.8 .
<!-- footnotes -->

View File

@ -11,8 +11,6 @@ trove_classifiers = [
"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",

View File

@ -4,8 +4,8 @@
# and then run "tox" from this directory.
[tox]
# useful envs: py27-nodilate, py35, py36, py37, py38, pypy, flake8
envlist = {py27-nodilate,py35,py36,py37,py38}
# useful envs: py27-nodilate, py37, py38, pypy, flake8
envlist = {py27-nodilate,py37,py38}
skip_missing_interpreters = True
minversion = 2.4.0