commit 46560898db9b4617d17d9a9586231bd1d43769eb
parent 055c1bb53e10e6038812d67f181bda10ad18b3dd
Author: René Gern <rene.bohne@gmail.com>
Date: Sun, 14 May 2023 18:29:34 +0200
Restrict Python to 3.10 and earlier (#245)
* fixes #228
* python < 3.11 is less restrictive. added comment
Diffstat:
2 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/environment_cpu.yml b/environment_cpu.yml
@@ -7,6 +7,7 @@ channels:
- conda-forge # pytest-mock
- pytorch
dependencies:
+ - python<3.11 # onnxruntime
- black
- flake8
- h5py
diff --git a/environment_gpu.yml b/environment_gpu.yml
@@ -8,6 +8,7 @@ channels:
- pytorch
- nvidia
dependencies:
+ - python<3.11 # onnxruntime
- black
- flake8
- h5py