@@ -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"
3032pandas = " >=1.4.0, <=1.6.0"
3133scipy = " ^1.9.0"
3234matplotlib = " ^3.5.1"
33- requests = " ^2.27.1 "
35+ requests = " <=2.31.0 " # Windows has an issue with 2.32.0
3436joblib = " ^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 ]
3842pytest = " ^6.0.0"
@@ -51,13 +55,15 @@ pandoc = "^2.2"
5155recommonmark = " ^0.7.1"
5256Jinja2 = " 3.0.3"
5357
58+ [tool .poetry .group .jupyter ]
59+ optional = true
60+
5461[tool .poetry .group .jupyter .dependencies ]
5562jupyter = " ^1.0.0"
5663ipykernel = " ^6.15.0"
5764ipython = " ^8.0.0"
5865nbmake = " ^1.2" # test jupyter notebooks
5966
60-
6167[build-system ]
6268requires = [" poetry-core>=1.0.0" ]
6369build-backend = " poetry.core.masonry.api"
0 commit comments