* Fix PyTorch + setuptools bug

* Move constraint to GitHub Actions
This commit is contained in:
Adam J. Stewart 2022-01-12 15:57:49 -06:00 коммит произвёл GitHub
Родитель 5136d819c0
Коммит ff28a3b358
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 3 добавлений и 1 удалений

4
.github/workflows/tests.yaml поставляемый
Просмотреть файл

@ -59,7 +59,9 @@ jobs:
if: ${{ runner.os == 'Windows' }}
- name: Install conda dependencies (Windows)
run: |
conda install 'fiona>=1.5' h5py 'rasterio>=1.0.16'
# PyTorch isn't compatible with setuptools 59.6+, pin for now until new PyTorch release
# https://github.com/pytorch/pytorch/pull/69904
conda install 'fiona>=1.5' h5py 'rasterio>=1.0.16' 'setuptools<59.6'
conda list
conda info
if: ${{ runner.os == 'Windows' }}