diff --git a/CHANGELOG b/CHANGELOG index 696ee44..bee75ac 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,12 @@ Changelog ========= +## [1.0.1] - 2019-12-05 +### Summary + +Fixed broken build process for setup.py. + + ## [1.0.0] - 2019-12-05 ### Summary diff --git a/README.md b/README.md index 48371dc..313bb66 100644 --- a/README.md +++ b/README.md @@ -234,7 +234,7 @@ This is not exhaustive, but here is an explanation of some important files. * `tools/generator.py`: generates Python objects based on NACC Data Element Dictionaries in CSV. -* `run_filters.py` and `run_filters.sh`: +* `tools/preprocess/run_filters.py` and `tools/preprocess/run_filters.sh`: pulls data from REDCap based on the settings found in `nacculator_cfg.ini` (for .py) and `filters_config.cfg` (for .sh). diff --git a/setup.py b/setup.py index b27f441..51c5535 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ from setuptools import setup, find_packages -VERSION="1.0.0" +VERSION="1.0.1" setup( name="nacculator", @@ -32,7 +32,7 @@ install_requires=[ "cappy @ git+https://github.com/ctsit/cappy.git@2.0.0" - ] + ], python_requires=">=3.6.0", )