-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump Python minimum to 3.8 and rework CI a bit
Rather than testing every version, just maintain a Jenkins build for the baseline and the latest. The latter can be done automatically as there's a Docker image tagged latest, whilst the former needs a bit of manual bumping. However, there should now be fewer places that need updating with the version number. Note that officially this means Ubuntu 18.04 is not supported. However, for now, Jenkins is still using that for linux-baseline, and so we'll need to keep it working in practice until we've migrated over to 20.04, though probably we should jump straight to 22.04 for CI as 20.04 has a bit under a year left to it as well.
- Loading branch information
Showing
11 changed files
with
36 additions
and
93 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
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
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
File renamed without changes.
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,4 +1,4 @@ | ||
FROM python:3.6.0 | ||
FROM python:latest | ||
|
||
LABEL maintainer="Alexander.Richardson@cl.cam.ac.uk" | ||
|
||
|
This file was deleted.
Oops, something went wrong.
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
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,4 +1,4 @@ | ||
FROM ubuntu:bionic-20180426 | ||
FROM ubuntu:20.04 | ||
|
||
LABEL maintainer="Alexander.Richardson@cl.cam.ac.uk" | ||
|
||
|
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,12 @@ | ||
FROM ubuntu:latest | ||
|
||
LABEL maintainer="Alexander.Richardson@cl.cam.ac.uk" | ||
|
||
RUN apt-get update && apt-get install -y --no-install-recommends \ | ||
make ninja-build \ | ||
gcc \ | ||
git \ | ||
python3-minimal python3-pip python3-setuptools | ||
|
||
COPY requirements.txt /tmp/requirements.txt | ||
RUN pip3 install -r /tmp/requirements.txt && rm -f /tmp/requirements.txt |