Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit a0f5001

Browse files
richvdhanoadragon453
authored andcommitted
unpin olddeps build from py36
1 parent 2e627ec commit a0f5001

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
#!/usr/bin/env bash
22

33
# this script is run by buildkite in a plain `xenial` container; it installs the
4-
# minimal requirements for tox and hands over to the py35-old tox environment.
4+
# minimal requirements for tox and hands over to the py3-old tox environment.
55

66
set -ex
77

88
apt-get update
9-
apt-get install -y python3.5 python3.5-dev python3-pip libxml2-dev libxslt-dev xmlsec1 zlib1g-dev tox
9+
apt-get install -y python3 python3-dev python3-pip libxml2-dev libxslt-dev xmlsec1 zlib1g-dev tox
1010

1111
export LANG="C.UTF-8"
1212

1313
# Prevent virtualenv from auto-updating pip to an incompatible version
1414
export VIRTUALENV_NO_DOWNLOAD=1
1515

16-
exec tox -e py35-old,combine
16+
exec tox -e py3-old,combine

tox.ini

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ commands =
7474
# we use "env" rather than putting a value in `setenv` so that it is not
7575
# inherited by other tox environments.
7676
#
77-
# keep this in sync with the copy in `testenv:py35-old`.
77+
# keep this in sync with the copy in `testenv:py3-old`.
7878
#
7979
/usr/bin/env COVERAGE_PROCESS_START={toxinidir}/.coveragerc "{envbindir}/trial" {env:TRIAL_FLAGS:} {posargs:tests} {env:TOXSUFFIX:}
8080

@@ -103,8 +103,9 @@ usedevelop=true
103103

104104
# A test suite for the oldest supported versions of Python libraries, to catch
105105
# any uses of APIs not available in them.
106-
[testenv:py35-old]
107-
skip_install=True
106+
[testenv:py3-old]
107+
skip_install = true
108+
usedevelop = false
108109
deps =
109110
# Old automat version for Twisted
110111
Automat == 0.3.0

0 commit comments

Comments
 (0)