File tree Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -198,11 +198,6 @@ jobs:
198198 - if : steps.cache.outputs.cache-hit != 'true'
199199 run : |
200200 python -m pip uninstall -y jupyterlab-server # https://github.com/pypa/pip/issues/6275
201-
202- python -m pip install "setuptools==64.0.0"
203- python -m pip install pyvinecopulib # requires newer setuptools
204- python -m pip install "setuptools==56.0.0"
205-
206201 python -m pip install -e . -e ./examples
207202 python -m pip install -r tests/devops_tests/requirements.txt
208203 - if : steps.cache.outputs.cache-hit != 'true'
Original file line number Diff line number Diff line change @@ -32,7 +32,11 @@ def get_long_description():
3232 "seaborn" ,
3333 "numdifftools" ,
3434 ]
35- + (["pyvinecopulib" , "vtk" ] if platform .architecture ()[0 ] != "32bit" else []),
35+ + (
36+ ["pyvinecopulib" + "==0.6.4" if CI else "" , "vtk" ]
37+ if platform .architecture ()[0 ] != "32bit"
38+ else []
39+ ),
3640 extras_require = {
3741 "tests" : [
3842 "pytest" ,
You can’t perform that action at this time.
0 commit comments