-
Notifications
You must be signed in to change notification settings - Fork 341
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Document minimum supported dependency versions
- Loading branch information
1 parent
0b1266e
commit d9d8699
Showing
8 changed files
with
113 additions
and
81 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 |
---|---|---|
@@ -1,29 +1,53 @@ | ||
black[colorama]>=21b | ||
fiona | ||
flake8 | ||
# black 21+ required for Python 3.9 support | ||
black>=21 | ||
# fiona 1.5+ required for fiona.transform module | ||
fiona>=1.5 | ||
# flake8 3.8+ depends on pyflakes 2.2+, which fixes a bug with mypy error code ignores: | ||
# https://github.com/PyCQA/pyflakes/pull/455 | ||
flake8>=3.8 | ||
h5py | ||
isort[colors]>=4.3.5 | ||
# isort 5.8+ required for extend_skip option | ||
isort[colors]>=5.8 | ||
jupyterlab | ||
matplotlib | ||
# mypy 0.900+ required for pyproject.toml support | ||
mypy>=0.900 | ||
numpy | ||
omegaconf | ||
# omegaconf 2.1+ required for to_object method | ||
omegaconf>=2.1 | ||
opencv-python | ||
pillow | ||
# pillow 2.9+ required for height attribute | ||
pillow>=2.9 | ||
pycocotools | ||
# pydocstyle 6.1+ required for pyproject.toml support | ||
pydocstyle[toml]>=6.1 | ||
pytest>=6.0 | ||
pytest-cov | ||
pytorch-lightning | ||
# pytest 6+ required for pyproject.toml support | ||
pytest>=6 | ||
# pytest-cov 2.4+ required for pytest --cov flags | ||
pytest-cov>=2.4 | ||
# pytorch-lightning 1.3+ required for gradient_clip_algorithm argument to Trainer | ||
pytorch-lightning>=1.3 | ||
# release versions missing files, must install from master | ||
git+https://github.com/pytorch/pytorch_sphinx_theme | ||
# radiant-mlhub 0.2.1+ required for api_key bugfix: | ||
# https://github.com/radiantearth/radiant-mlhub/pull/48 | ||
radiant-mlhub>=0.2.1 | ||
rarfile | ||
rasterio>=1.0 | ||
rtree>=0.5.0 | ||
scikit-learn | ||
segmentation-models-pytorch | ||
setuptools>=42 | ||
sphinx | ||
# rarfile 3+ required for correct Rar file detection | ||
rarfile>=3 | ||
# rasterio 1.0.16+ required for CRS support | ||
rasterio>=1.0.16 | ||
# rtree 0.5+ required for 3D index support | ||
rtree>=0.5 | ||
# scikit-learn 0.18+ required for sklearn.model_selection module | ||
scikit-learn>=0.18 | ||
# segmentation-models-pytorch 0.2+ required for smp.losses module | ||
segmentation-models-pytorch>=0.2 | ||
# setuptools 30.4+ required for options.packages.find section in setup.cfg | ||
setuptools>=30.4 | ||
# sphinx 3+ required for autodoc_typehints = description | ||
sphinx>=3 | ||
# torch 1.7+ required for typing | ||
torch>=1.7 | ||
torchmetrics | ||
# torchvision 0.3+ required for download_file_from_google_drive | ||
torchvision>=0.3 |
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,33 +1,33 @@ | ||
spack: | ||
specs: | ||
- opencv+python3+imgcodecs+tiff+jpeg+png | ||
- pil | ||
- "python@3.7:+bz2" | ||
- "py-black@21:+colorama" | ||
- py-fiona | ||
- py-flake8 | ||
- py-h5py | ||
- "py-isort@4.3.5:+colors" | ||
- py-jupyterlab | ||
- py-matplotlib | ||
- "opencv+python3+imgcodecs+tiff+jpeg+png" | ||
- "pil@2.9:" | ||
- "python@3.6:+bz2" | ||
- "py-black@21:" | ||
- "py-fiona@1.5:" | ||
- "py-flake8@3.8:" | ||
- "py-h5py" | ||
- "py-isort@5.8:+colors" | ||
- "py-jupyterlab" | ||
- "py-matplotlib" | ||
- "[email protected]:" | ||
- py-numpy | ||
- py-omegaconf | ||
- py-pycocotools | ||
- "py-numpy" | ||
- "py-omegaconf@2.1:" | ||
- "py-pycocotools" | ||
- "[email protected]:+toml" | ||
- "py-pytest@6.0:" | ||
- py-pytest-cov | ||
- py-pytorch-lightning | ||
- py-pytorch-sphinx-theme | ||
- "py-pytest@6:" | ||
- "py-pytest-cov@2.4:" | ||
- "py-pytorch-lightning@1.3:" | ||
- "py-pytorch-sphinx-theme" | ||
- "[email protected]:" | ||
- py-rarfile | ||
- "[email protected]:" | ||
- "[email protected].0:" | ||
- py-scikit-learn | ||
- py-segmentation-models-pytorch | ||
- "py-setuptools@42:" | ||
- py-sphinx | ||
- "py-rarfile@3:" | ||
- "[email protected].16:" | ||
- "[email protected]:" | ||
- "py-scikit-learn@0.18:" | ||
- "py-segmentation-models-pytorch@0.2:" | ||
- "py-setuptools@30.4:" | ||
- "py-sphinx@3:" | ||
- "[email protected]:" | ||
- py-torchmetrics | ||
- "py-torchmetrics" | ||
- "[email protected]:" | ||
concretization: together |