Skip to content

Commit 0109ea3

Browse files
authored
Remove unnecessary caps in dependencies for kfp-related packages (elyra-ai#3076)
Signed-off-by: Kevin Bates <[email protected]>
1 parent 080ebbb commit 0109ea3

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

pyproject.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ dependencies = [
1919
"deprecation",
2020
"entrypoints>=0.3",
2121
"jinja2>=3",
22-
"jsonschema>=3.2.0,<4.0", # Cap from kfp
22+
"jsonschema>=3.2.0",
2323
"jupyter_core>=4.11.2,<5", # Cap due to v5 not support python<3.8
2424
"jupyter_client>=6.1.7",
25-
"jupyter-events<0.5.0", # Cap from kfp from jsonschema
25+
"jupyter-events>=0.6.2",
2626
"jupyter-packaging>=0.10",
2727
"jupyter_server>=1.7.0",
2828
"jupyterlab>=3.4.6,<4.0", # comment out to use local jupyterlab
@@ -38,7 +38,7 @@ dependencies = [
3838
"networkx>=2.5.1",
3939
"papermill>=2.3.4",
4040
"python-lsp-server[all]>=1.1.0",
41-
"pyyaml>=5.3.1,<6.0", # Cap from kfp
41+
"pyyaml>=5.3.1",
4242
"requests>=2.25.1",
4343
"rfc3986-validator>=0.1.1",
4444
"tornado>=6.1.0",

test_requirements.txt

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ git-python
33
importlib-resources
44
pytest>=5.4.1
55
pytest-console-scripts
6+
pytest_jupyter
67
pytest-tornasync
78
pytest_virtualenv
89
requests-mock

0 commit comments

Comments
 (0)