Skip to content

Commit 813cf6e

Browse files
committed
Fix dependencies
1 parent cb07439 commit 813cf6e

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

pyproject.toml

+8-3
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,12 @@ classifiers = [
2525
dynamic = ["version"]
2626

2727
requires-python = ">=3.7"
28-
dependencies = ["requests>=2.28.1", "pandas>=2", "pycountry>=22.3.5"]
28+
dependencies = [
29+
"bokeh>=3,<4",
30+
"requests>=2.28.1",
31+
"pandas>=2",
32+
"pycountry>=22.3.5",
33+
]
2934
[project.optional-dependencies]
3035
docs = [
3136
"docutils==0.17.1", # pinned to docutils==0.17.1 due to https://github.com/worldbank/template/issues/60. See also: https://jupyterbook.org/en/stable/content/citations.html?highlight=docutils#citations-and-bibliographies
@@ -38,9 +43,9 @@ docs = [
3843
"Source" = "https://github.com/worldbank/template"
3944

4045
[tool.codespell]
41-
skip = 'docs/_build,docs/references.bib,*.png,*.gz,*.whl'
46+
skip = 'docs/_build,docs/bibliography.bib,*.png,*.gz,*.whl'
4247
ignore-regex = '^\s*"image\/png":\s.*'
43-
ignore-words-list = "gost,"
48+
ignore-words-list = "gost,Nd"
4449

4550
[tool.hatch.build.targets.sdist]
4651
include = [

0 commit comments

Comments
 (0)