diff --git a/README.md b/README.md index 7662c3e3..f08d8551 100644 --- a/README.md +++ b/README.md @@ -74,9 +74,9 @@ Supported Python Configurations: | OS | Python version | | ------- | -------------- | -| macOS | 3.6, 3.7, 3.8 | -| Ubuntu | 3.6, 3.7, 3.8 | -| Windows | 3.6, 3.7, 3.8 | +| macOS | 3.7, 3.8, 3.9 | +| Ubuntu | 3.7, 3.8, 3.9 | +| Windows | 3.7, 3.8, 3.9 | ### (Optional) Create a virtual environment @@ -93,10 +93,10 @@ is sufficient (see [the difference between Anaconda and Miniconda](https://conda.io/docs/user-guide/install/download.html#anaconda-or-miniconda) if you are curious) if you do not already have conda installed. -Then, to create a new Python 3.6 environment, run: +Then, to create a new Python 3.7 environment, run: ```bash -conda create --name aif360 python=3.6 +conda create --name aif360 python=3.7 conda activate aif360 ``` diff --git a/setup.py b/setup.py index e03cdc3d..fb128f03 100644 --- a/setup.py +++ b/setup.py @@ -36,7 +36,7 @@ long_description_content_type='text/markdown', license='Apache License 2.0', packages=[pkg for pkg in find_packages() if pkg.startswith('aif360')], - python_requires='>=3.6', + python_requires='>=3.7', install_requires=[ 'numpy>=1.16', 'scipy>=1.2.0,<1.6.0',