Skip to content

Commit

Permalink
versioned to 0.1.9 stable release; updated readme as well
Browse files Browse the repository at this point in the history
  • Loading branch information
lshpaner committed Jul 27, 2024
1 parent bf63208 commit a5cfc7a
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
12 changes: 8 additions & 4 deletions min_readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,16 @@
## Prerequisites
Before you install `kfre`, ensure you have the following:

- **Python**: Python 3.6 or higher is required to run `kfre`.
- **Python**: Python 3.74 or higher is required to run `kfre`.

Additionally, kfre has the following package dependencies:

- **NumPy**: Version 1.18.5 or higher
- **Pandas**: Version 1.0.5 or higher
- **numpy**: version 1.18.5 or higher
- **pandas**: version 1.0.5 or higher
- **matplotlib**: version 3.2.2 or higher
- **seaborn**: version 0.10.1 or higher
- **scikit-learn**: version 0.23.1 or higher
- **tqdm**: version 4.48.0 or higher


## Installation
Expand Down Expand Up @@ -52,7 +56,7 @@ If you use `kfre` in your research or projects, please consider citing it.
month = may,
year = 2024,
publisher = {Zenodo},
version = {0.1.8a},
version = {0.1.9},
doi = {10.5281/zenodo.11100222},
url = {https://doi.org/10.5281/zenodo.11100222}
}
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name="kfre",
version="0.1.8a5",
version="0.1.9",
author="Leonid Shpaner",
author_email="lshpaner@ucla.edu",
description="A Python library for estimating kidney failure risk using the KFRE model developed by Tangri et al.",
Expand All @@ -22,7 +22,7 @@
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
], # Classifiers for the package
python_requires=">=3.6", # Minimum version of Python required
python_requires=">=3.74", # Minimum version of Python required
install_requires=[
"numpy>=1.18.5", # Minimum version of numpy required
"pandas>=1.0.5", # Minimum version of pandas required
Expand Down
2 changes: 1 addition & 1 deletion src/kfre/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.1.8a5"
__version__ = "0.1.9"


from .perform_eval import *
Expand Down

0 comments on commit a5cfc7a

Please sign in to comment.