Skip to content

Commit d88fc4b

Browse files
committed
chore: update dependencies in pyproject.toml
1 parent 88e3d11 commit d88fc4b

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

pyproject.toml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ classifiers = [
2121
"Programming Language :: Python :: 3 :: Only",
2222
"Programming Language :: Python :: 3.8",
2323
"Programming Language :: Python :: 3.9",
24+
"Programming Language :: Python :: 3.10",
25+
"Programming Language :: Python :: 3.11",
2426
"License :: OSI Approved :: MIT License",
2527
"Operating System :: OS Independent",
2628
]
@@ -30,9 +32,11 @@ python = ">=3.8, <4.0.0"
3032
pandas = ">=1.4.0, <=1.6.0"
3133
scipy = "^1.9.0"
3234
matplotlib = "^3.5.1"
33-
requests = "^2.27.1"
35+
requests = "<=2.31.0" # Windows has an issue with 2.32.0
3436
joblib = "^1.1.0"
35-
pillow = "<=9.1.0" # delete after issue with installing 9.2.0 is resolved
37+
38+
[tool.poetry.group.test]
39+
optional = true
3640

3741
[tool.poetry.group.test.dependencies]
3842
pytest = "^6.0.0"
@@ -51,13 +55,15 @@ pandoc = "^2.2"
5155
recommonmark = "^0.7.1"
5256
Jinja2 = "3.0.3"
5357

58+
[tool.poetry.group.jupyter]
59+
optional = true
60+
5461
[tool.poetry.group.jupyter.dependencies]
5562
jupyter = "^1.0.0"
5663
ipykernel = "^6.15.0"
5764
ipython = "^8.0.0"
5865
nbmake = "^1.2" # test jupyter notebooks
5966

60-
6167
[build-system]
6268
requires = ["poetry-core>=1.0.0"]
6369
build-backend = "poetry.core.masonry.api"

0 commit comments

Comments
 (0)