-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #210 from AlexandrovLab/pandas2-up
- Loading branch information
Showing
8 changed files
with
35 additions
and
46 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,7 @@ | |
|
||
# Hidden files and directories | ||
*.DS_Store | ||
.vscode/ | ||
|
||
# pypi build folder | ||
/build/ | ||
|
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
|
||
from setuptools import setup | ||
|
||
VERSION = "1.2.31" | ||
VERSION = "1.3.0" | ||
|
||
# remove the dist folder first if exists | ||
if os.path.exists("dist"): | ||
|
@@ -23,7 +23,7 @@ def write_version_py(filename="SigProfilerMatrixGenerator/version.py"): | |
# THIS FILE IS GENERATED FROM SIGPROFILEMATRIXGENERATOR SETUP.PY | ||
short_version = '%(version)s' | ||
version = '%(version)s' | ||
Update = 'v1.2.31: Resolve issue of ID and DBS matrices not being returned in the output matrices when chrom_based is set to True.' | ||
Update = 'v1.3.0: Require Pandas and Numpy >= 2.0.0 and Python >= 3.9' | ||
""" | ||
fh = open(filename, "w") | ||
|
@@ -49,15 +49,14 @@ def write_version_py(filename="SigProfilerMatrixGenerator/version.py"): | |
author_email="[email protected]", | ||
license="UCSD", | ||
packages=["SigProfilerMatrixGenerator"], | ||
python_requires=">=3.8", | ||
python_requires=">=3.9", | ||
install_requires=[ | ||
"matplotlib>=2.2.2", | ||
"sigProfilerPlotting>=1.3.24", | ||
"sigProfilerPlotting>=1.4.0", | ||
"statsmodels>=0.9.0", | ||
"numpy>=1.18.5,<2.0.0", | ||
"pandas>=0.23.4,<2.0.0", | ||
"scipy>=1.12.0; python_version>='3.9'", | ||
"scipy>=1.1.0, <1.12.0; python_version=='3.8'", | ||
"numpy>=2.0.0", | ||
"pandas>=2.0.0", | ||
"scipy>=1.12.0", | ||
], | ||
entry_points={ | ||
"console_scripts": [ | ||
|