mirror of
https://github.com/certbot/certbot.git
synced 2026-06-14 19:20:09 -04:00
Full Python 3.7 support (#6182)
Now that yaml/pyyaml#126 is resolved, #6170 can be reverted by bumping the pinned version of PyYAML.
You can see this code passing with full macOS and integration tests at https://travis-ci.org/certbot/certbot/builds/400957729.
* Revert "Allow py37 testing (#6170)"
This reverts commit cad95466b0.
* Bump pyyaml pinning to work on Python 3.7.
This commit is contained in:
parent
dd600db436
commit
cdf93de338
2 changed files with 5 additions and 19 deletions
|
|
@ -51,7 +51,7 @@ pytest-forked==0.2
|
|||
pytest-xdist==1.20.1
|
||||
python-dateutil==2.6.1
|
||||
python-digitalocean==1.11
|
||||
PyYAML==3.12
|
||||
PyYAML==3.13
|
||||
repoze.sphinx.autointerface==0.8
|
||||
requests-file==1.4.2
|
||||
requests-toolbelt==0.8.0
|
||||
|
|
|
|||
22
tox.ini
22
tox.ini
|
|
@ -14,7 +14,8 @@ pip_install = {toxinidir}/tools/pip_install_editable.sh
|
|||
# before the script moves on to the next package. All dependencies are pinned
|
||||
# to a specific version for increased stability for developers.
|
||||
install_and_test = {toxinidir}/tools/install_and_test.sh
|
||||
python37_compatible_dns_packages =
|
||||
dns_packages =
|
||||
certbot-dns-cloudflare \
|
||||
certbot-dns-cloudxns \
|
||||
certbot-dns-digitalocean \
|
||||
certbot-dns-dnsimple \
|
||||
|
|
@ -24,22 +25,14 @@ python37_compatible_dns_packages =
|
|||
certbot-dns-nsone \
|
||||
certbot-dns-rfc2136 \
|
||||
certbot-dns-route53
|
||||
dns_packages =
|
||||
certbot-dns-cloudflare \
|
||||
{[base]python37_compatible_dns_packages}
|
||||
nondns_packages =
|
||||
all_packages =
|
||||
acme[dev] \
|
||||
.[dev] \
|
||||
certbot-apache \
|
||||
{[base]dns_packages} \
|
||||
certbot-nginx \
|
||||
certbot-postfix \
|
||||
letshelp-certbot
|
||||
python37_compatible_packages =
|
||||
{[base]nondns_packages} \
|
||||
{[base]python37_compatible_dns_packages}
|
||||
all_packages =
|
||||
{[base]nondns_packages} \
|
||||
{[base]dns_packages}
|
||||
install_packages =
|
||||
{toxinidir}/tools/pip_install_editable.sh {[base]all_packages}
|
||||
source_paths =
|
||||
|
|
@ -69,13 +62,6 @@ commands =
|
|||
setenv =
|
||||
PYTHONHASHSEED = 0
|
||||
|
||||
[testenv:py37]
|
||||
commands =
|
||||
{[base]install_and_test} {[base]python37_compatible_packages}
|
||||
python tests/lock_test.py
|
||||
setenv =
|
||||
{[testenv]setenv}
|
||||
|
||||
[testenv:py27-oldest]
|
||||
commands =
|
||||
{[testenv]commands}
|
||||
|
|
|
|||
Loading…
Reference in a new issue