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" - PYTHON: "C:\\Python27-x64"
DISTUTILS_USE_SDK: "1" DISTUTILS_USE_SDK: "1"
TOXENV: py27-nodilate 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" - PYTHON: "C:\\Python37-x64"
TOXENV: py37 TOXENV: py37

View File

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

View File

@ -1,5 +1,9 @@
User-visible changes in "magic-wormhole": 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) ## Release 0.12.0 (04-Apr-2020)
* A command like `wormhole send /dev/fd0` can send the contents of the named * 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. 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, This library is compatible with Python 3.8 and higher (tested against
3.7, 3.8, and 3.9). It also still works with Python 2.7 and 3.5, although 3.8, and 3.9). It also still works with Python 2.7 although that is no
these are no longer supported by upstream libraries like Cryptography, so it longer supported by upstream libraries like Cryptography, so it may
may stop working at any time. stop working at any time.
## Packaging, Installation ## 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 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 tests on all supported (and installed) versions of python: 2.7, 3.7 and 3.8.
3.6.
### Troubleshooting ### 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 released under the MIT license, see LICENSE for details.
This library is compatible with python2.7, 3.4 (non-Windows-only), 3.5, and This library is compatible with python2.7, 3.7 and 3.8 .
3.6 .
<!-- footnotes --> <!-- footnotes -->

View File

@ -11,8 +11,6 @@ trove_classifiers = [
"Programming Language :: Python :: 2", "Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7", "Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3", "Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: CPython",

View File

@ -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, py38, pypy, flake8 # useful envs: py27-nodilate, py37, py38, pypy, flake8
envlist = {py27-nodilate,py35,py36,py37,py38} envlist = {py27-nodilate,py37,py38}
skip_missing_interpreters = True skip_missing_interpreters = True
minversion = 2.4.0 minversion = 2.4.0