This repository has been archived by the owner on Apr 26, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9769 from matrix-org/rav/fix_bionic
Fix incompatibility with bionic
- Loading branch information
Showing
3 changed files
with
18 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
#!/usr/bin/env bash | ||
|
||
# this script is run by buildkite in a plain `xenial` container; it installs the | ||
# minimal requirements for tox and hands over to the py35-old tox environment. | ||
# minimal requirements for tox and hands over to the py3-old tox environment. | ||
|
||
set -ex | ||
|
||
apt-get update | ||
apt-get install -y python3.5 python3.5-dev python3-pip libxml2-dev libxslt-dev xmlsec1 zlib1g-dev tox | ||
apt-get install -y python3 python3-dev python3-pip libxml2-dev libxslt-dev xmlsec1 zlib1g-dev tox | ||
|
||
export LANG="C.UTF-8" | ||
|
||
# Prevent virtualenv from auto-updating pip to an incompatible version | ||
export VIRTUALENV_NO_DOWNLOAD=1 | ||
|
||
exec tox -e py35-old,combine | ||
exec tox -e py3-old,combine |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Fix incompatibility with `tox` 2.5. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters