Skip to content

Commit

Permalink
deprecate python 3.6 and add 3.9
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 Jan 14, 2022
1 parent 36b6b72 commit cca652c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.6, 3.7, 3.8]
python-version: [3.7, 3.8, 3.9]

env:
UCI_DB: "https://archive.ics.uci.edu/ml/machine-learning-databases"
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,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 @@ -94,10 +94,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

0 comments on commit cca652c

Please sign in to comment.