Skip to content

Commit

Permalink
Update dependency versions in pyproject.toml for (optional) compatibi…
Browse files Browse the repository at this point in the history
…lity with Jupyter
  • Loading branch information
nilomr committed Nov 11, 2024
1 parent 35d2218 commit 4efda78
Showing 1 changed file with 17 additions and 4 deletions.
21 changes: 17 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ readme = "README.md"
license = { file = "LICENSE" }
dependencies = [
"pandas >= 1",
"numpy >= 1.17",
"numpy >= 1.17, <1.23.1",
"scipy >= 1.5",
"numba >= 0.49",
"tqdm",
Expand All @@ -36,16 +36,29 @@ dependencies = [
"bokeh >=2.3.3, <3.0.0",
"ujson",
"psutil",
"attrs",
"attrs<19.4",
"gitpython",
"typer == 0.6",
]

[project.optional-dependencies]
dev = ["ipywidgets", "ipykernel", "pytest", "nox", "black"]
dev = ["ipywidgets <= 8.0.3", "ipykernel < 6.20", "pytest >= 7", "nox", "black"]
test = ["pytest >=7"]
jupyter = [
"jsonschema == 4.17.3",
"jupyter == 1.0.0",
"jupyter-cache == 0.5.0",
"jupyter-client == 7.4.8",
"jupyter-console == 6.4.4",
"jupyter-core == 5.1.0",
"jupyter-events == 0.5.0",
"jupyter-server == 2.0.1",
"jupyter-server-terminals == 0.4.2",
"jupyterlab-pygments == 0.2.2",
"jupyterlab-widgets == 3.0.4",
]
doc = [
"sphinx <5, >=3.5.4",
"sphinx <5, >= 3.5.4",
"sphinx-copybutton",
"sphinx_book_theme == 0.3.3",
"myst-nb == 0.17",
Expand Down

0 comments on commit 4efda78

Please sign in to comment.