Skip to content

Commit

Permalink
add cap on major versions
Browse files Browse the repository at this point in the history
  • Loading branch information
diehlbw committed May 28, 2024
1 parent 6413600 commit 2a47146
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,16 @@ packages =
find_namespace:
include_package_data = True
install_requires =
numpy>=1.23 # 1.23 for aequitas | >1.26 for python 3.12+
numpy>=1.23,<2 # 1.23 for aequitas | >1.26 for python 3.12+
ipython>=8.14
ipywidgets>=8.0
jupyterlab>=4
matplotlib>=3.6
pandas>=1.5.0
scikit-learn>=1.2.0
jupyterlab>=4,<5
matplotlib>=3.6,<4
pandas>=1.5.0,<3
scikit-learn>=1.2.0,<2
pyarrow>=9.0.0
pydantic>=2.6.4
ydata-profiling>=4.5.1
pydantic>=2.6.3,<3
ydata-profiling>=4.5.1,<5

[options.packages.find]
where = src
Expand Down

0 comments on commit 2a47146

Please sign in to comment.