cryptography raises a warning on python 3.6, so we may as well follow suit.
This commit is contained in:
Julien Cristau 2022-09-01 12:00:28 +02:00
Родитель b69caee346
Коммит 4fca9e993e
4 изменённых файлов: 2 добавлений и 6 удалений

Просмотреть файл

@ -84,8 +84,6 @@ tasks:
$map: $map:
- short_name: py27 - short_name: py27
image_tag: '2.7' image_tag: '2.7'
- short_name: py36
image_tag: '3.6'
- short_name: py37 - short_name: py37
image_tag: '3.7' image_tag: '3.7'
- short_name: py38 - short_name: py38

Просмотреть файл

@ -4,4 +4,4 @@ set -e
set -x set -x
docker run -t -v $PWD:/src -w /src -e SUFFIX=-py2 python:2.7 maintenance/pin-helper.sh docker run -t -v $PWD:/src -w /src -e SUFFIX=-py2 python:2.7 maintenance/pin-helper.sh
docker run -t -v $PWD:/src -w /src python:3.6 maintenance/pin-helper.sh docker run -t -v $PWD:/src -w /src python:3.7 maintenance/pin-helper.sh

Просмотреть файл

@ -67,7 +67,6 @@ setup(
'Programming Language :: Python', 'Programming Language :: Python',
'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3',
'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',

Просмотреть файл

@ -4,7 +4,7 @@
envlist = envlist =
clean, clean,
check, check,
{py27,py36,py37,py38,py39,py310,pypy}, {py27,py37,py38,py39,py310,pypy},
docs, docs,
report report
@ -12,7 +12,6 @@ envlist =
basepython = basepython =
pypy: {env:TOXPYTHON:pypy} pypy: {env:TOXPYTHON:pypy}
py27: {env:TOXPYTHON:python2.7} py27: {env:TOXPYTHON:python2.7}
py36: {env:TOXPYTHON:python3.6}
py37: {env:TOXPYTHON:python3.7} py37: {env:TOXPYTHON:python3.7}
py38: {env:TOXPYTHON:python3.8} py38: {env:TOXPYTHON:python3.8}
py39: {env:TOXPYTHON:python3.9} py39: {env:TOXPYTHON:python3.9}