Skip to content

Commit

Permalink
Restrict jupyterlab version for setup to 3.x for now.. Fix #2530
Browse files Browse the repository at this point in the history
  • Loading branch information
andrey-khropov committed Nov 16, 2023
1 parent 302a411 commit 76ed5da
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion catboost/python-package/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[build-system]
requires = ["setuptools >= 64.0", "wheel", "jupyterlab", "conan (>=1.57, <=1.59)"]
requires = ["setuptools >= 64.0", "wheel", "jupyterlab (>=3.0.6, == 3.*)", "conan (>=1.57, <=1.59)"]
2 changes: 1 addition & 1 deletion catboost/python-package/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def setup_hnsw_submodule(argv, extensions):
def get_setup_requires(argv):
setup_requires = ['wheel']
if ('build_widget' in argv) or (not ('--no-widget' in argv)):
setup_requires += ['jupyterlab']
setup_requires += ['jupyterlab (>=3.0.6, == 3.*)']
return setup_requires


Expand Down

0 comments on commit 76ed5da

Please sign in to comment.