This repository has been archived by the owner on Feb 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* drop tox * install py27
- Loading branch information
Showing
15 changed files
with
61 additions
and
105 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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,8 @@ | |
FROM python:3.7-slim-stretch | ||
#FROM borda/docker_python-opencv-ffmpeg:py3 | ||
|
||
LABEL maintainer="[email protected]" | ||
|
||
# Install packages | ||
RUN apt-get update -qq && apt-get install -y --no-install-recommends \ | ||
git>=2.0 \ | ||
|
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,9 +1,10 @@ | ||
#FROM ubuntu:bionic | ||
FROM ubuntu:20.04 | ||
|
||
|
||
ARG PYTHON_VERSION=3.7 | ||
|
||
LABEL maintainer="[email protected]" | ||
|
||
SHELL ["/bin/bash", "-c"] | ||
|
||
# for installing tzdata see: https://stackoverflow.com/a/58264927/4521646 | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
numpy>=1.8.2 | ||
numpy>=1.9 | ||
scipy>=0.10.0 | ||
pandas>=0.17.1 | ||
six>=1.7.3 | ||
pillow>=2.1.0, !=7.1 # 7.x fails to load PNG via skimage | ||
pillow>=4.0, <7 # 7.x fails to load PNG via skimage | ||
matplotlib>=2.0.2, <3.0.0 # new version does not support py2 | ||
tqdm>=4.7.4, <=4.30 # higher fails ascii for py2 | ||
pyyaml | ||
scikit-image | ||
opencv-python-headless<4.3 | ||
openslide-python<=1.1.1 | ||
nibabel | ||
nibabel<3.0 | ||
SimpleITK | ||
psutil | ||
pathos |
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 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 |
---|---|---|
|
@@ -7,5 +7,4 @@ flake8 | |
check-manifest | ||
codacy-coverage | ||
parameterized | ||
tox | ||
mock |