Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 10 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="causing",
version="2.4.6",
version="2.5.0",
author="Dr. Holger Bartel",
author_email="holger.bartel@realrate.ai",
description="Causing: CAUSal INterpretation using Graphs",
Expand All @@ -19,11 +19,15 @@
"Operating System :: OS Independent",
],
install_requires=[
"numpy~=1.23",
"pandas~=1.3",
"scipy~=1.9",
"sympy~=1.5",
"networkx~=2.7",
# Lower-bound floors only: the previous `~=` upper caps blocked numpy 2 /
# pandas 2+ / networkx 3 and made Python 3.14 impossible (no pandas 1.x cp314
# wheels). Verified numerically equivalent across the stack jump — see
# https://github.com/realrate/RealRate-Private/issues/2098
Comment thread
bbkrr marked this conversation as resolved.
"numpy>=1.23",
"pandas>=1.3",
"scipy>=1.9",
"sympy>=1.5",
"networkx>=2.7",
"pre-commit", # TODO: move to dev-requirements
],
python_requires=">=3.9",
Expand Down
Loading