File tree Expand file tree Collapse file tree 5 files changed +13
-7
lines changed
Expand file tree Collapse file tree 5 files changed +13
-7
lines changed Original file line number Diff line number Diff line change @@ -8,14 +8,16 @@ ENV LC_ALL=C.UTF-8
88RUN apt-get -o Acquire::Check-Valid-Until=false -o Acquire::Check-Date=false update && \
99 apt-get install -y --no-install-recommends libeigen3-dev protobuf-compiler libprotobuf-dev zlib1g-dev libgtest-dev git && \
1010 rm -rf /var/lib/apt/lists/* && \
11- python3 -m pip install flake8 parameterized coverage tensorflow torch && \
11+ python3 -m pip install tensorflow torch && \
1212 git clone https://github.com/Blosc/python-blosc2/ /python-blosc2 && cd /python-blosc2 && git checkout v2.5.1 && \
1313 python3 -m pip install --trusted-host pypi.org --trusted-host files.pythonhosted.org --upgrade -r /python-blosc2/requirements-build.txt && \
1414 python3 -m pip install --trusted-host pypi.org --trusted-host files.pythonhosted.org --upgrade -r /python-blosc2/requirements-runtime.txt && \
1515 git submodule update --init --recursive && python3 setup.py build_ext --inplace -- -DDEACTIVATE_AVX2:STRING=ON && \
1616 python3 -m pip install --upgrade setuptools pip && \
17- python3 -m pip install --upgrade numpy 'pybind11<2.6' pytest && \
18- python3 -m pip install --trusted-host pypi.org --trusted-host files.pythonhosted.org --upgrade -r /dislib/requirements.txt
17+ python3 -m pip install --upgrade 'pybind11<2.6' && \
18+ python3 -m pip install --trusted-host pypi.org --trusted-host files.pythonhosted.org --upgrade -r /dislib/requirements.txt && \
19+ python3 -m pip install --trusted-host pypi.org --trusted-host files.pythonhosted.org --upgrade -r /dislib/requirements_tests.txt && \
20+ python3 -m pip install --trusted-host pypi.org --trusted-host files.pythonhosted.org --upgrade -r /dislib/requirements_ci.txt
1921
2022ENV COMPSS_LOAD_SOURCE=false
2123
Original file line number Diff line number Diff line change 1- scikit-learn >= 1.0.2
2- scipy >= 1.3.0
3- numpy == 1.23.1
1+ scikit-learn >= 1.7
2+ scipy >= 1.13
3+ numpy >= 2.0
44cvxpy >= 1.1.5
55cbor2 >= 5.4.0
Original file line number Diff line number Diff line change 1+ coverage>=5.5
2+ flake8>=3.8.3
Original file line number Diff line number Diff line change 11cupy
2- torch==1.13 .0
2+ torch>2 .0
Original file line number Diff line number Diff line change @@ -2,3 +2,5 @@ numpydoc>=0.8.0
22pandas>=0.24.2
33matplotlib>=2.2.3
44blosc2==2.5.1
5+ parameterized>= 0.9.0
6+ pytest
You can’t perform that action at this time.
0 commit comments