Skip to content

Commit

Permalink
python version >= 3.7
Browse files Browse the repository at this point in the history
Signed-off-by: Samuel Hoffman <hoffman.sc@gmail.com>
  • Loading branch information
hoffmansc committed Dec 3, 2021
1 parent ed0f750 commit 306ed4b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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
```

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 306ed4b

Please sign in to comment.