forked from mckinsey/causalnex
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Limiting numpy version (mckinsey#217) * adding line on yml - no effect * adding line on yml - no effect * changing req.txt * changing req.txt * changing req.txt * adding setuptools requirement (mckinsey#218) * adding setuptools requirement * adding setuptools requirement * update dictionaries to pass linting (mckinsey#230) * Refactor/unlock numpy kl (mckinsey#235) * unlocking numpy * unlocking numpy * unlocking numpy * dependency fixes for docs and linters * requirement fixes : numpy <1.24 for all python versions --------- Co-authored-by: kyle_lim <[email protected]> * Simplifying requirements - Numpy version range (mckinsey#236) * Remove python 3.6 and 3.7 support (mckinsey#234) * remove python 3.6 and 3.7 support * update documentation * remove comment regarding ignoring a warning when running `make build-docs` * removing ipython from test requiremnets * Update README.md Co-authored-by: Philip Pilgerstorfer <[email protected]> --------- Co-authored-by: GabrielAz <[email protected]> Co-authored-by: Gabriel Azevedo Ferreira <[email protected]> Co-authored-by: Philip Pilgerstorfer <[email protected]> * unlocking numpy (mckinsey#238) Co-authored-by: Gabriel Azevedo <[email protected]> * Release 0.11.2 (mckinsey#239) Co-authored-by: Gabriel Azevedo <[email protected]> --------- Co-authored-by: ElisabethSesterHussQB <[email protected]> Co-authored-by: kyle_lim <[email protected]> Co-authored-by: Philip Pilgerstorfer <[email protected]> Co-authored-by: Gabriel Azevedo <[email protected]>
- Loading branch information
1 parent
bfd2b81
commit 14ac4fb
Showing
13 changed files
with
52 additions
and
84 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,14 @@ | ||
ipython>=8.10.0 # Required by Snyk | ||
networkx~=2.5 | ||
numpy<1.24; python_version >= '3.10' | ||
numpy>=1.14.2, <1.22; python_version < '3.10' | ||
numpy>=1.14.2, <1.24 | ||
pandas>=1.0, <2.0 | ||
pathos>=0.2.7, <0.3.0 | ||
pgmpy>=0.1.14, <0.1.20 | ||
scikit-learn>=0.22.0, <0.25.0, !=0.22.2.post1, !=0.24.1; python_version < '3.9' | ||
scikit-learn>=0.24.0, <0.25.0, !=0.24.1; python_version == '3.9' | ||
scikit-learn>=0.22.0, !=0.22.2.post1, !=0.24.1; python_version < '3.9' | ||
scikit-learn>=0.24.0, !=0.24.1; python_version == '3.9' | ||
scikit-learn>=0.25.0; python_version == '3.10' | ||
scipy>=1.2.0, <1.7; python_version < '3.8' | ||
scipy>=1.7; python_version >= '3.8' | ||
setuptools<=60; python_version <= '3.6' | ||
setuptools>=65.5.1; python_version > '3.6' | ||
scipy>=1.7 | ||
setuptools>=65.5.1 | ||
torch>=1.7, <2.0 | ||
wheel>=0.37.0; python_version < '3.7' | ||
wheel>=0.38.0; python_version >= '3.7' | ||
wheel>=0.38.0 | ||
wrapt>=1.11.0, <1.13 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -68,7 +68,7 @@ | |
long_description=readme, | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/quantumblacklabs/causalnex", | ||
python_requires=">=3.6, <3.11", | ||
python_requires=">=3.8, <3.11", | ||
author="QuantumBlack Labs", | ||
author_email="[email protected]", | ||
packages=find_packages(exclude=["docs*", "tests*", "tools*"]), | ||
|
@@ -78,8 +78,6 @@ | |
keywords="Causal Reasoning, Bayesian Network, Inference, Structure Learning, Do-Calculus", | ||
classifiers=[ | ||
"Development Status :: 4 - Beta", | ||
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters