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

Commit 906065c

Browse files
committed
unpin olddeps build from py36
1 parent 5edd91c commit 906065c

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
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: 2 additions & 2 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,7 +103,7 @@ 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]
106+
[testenv:py3-old]
107107
skip_install = true
108108
usedevelop = false
109109
deps =

0 commit comments

Comments
 (0)