From cca652c2a5881f0405e76c2b5b6f67cd9a32b4e9 Mon Sep 17 00:00:00 2001 From: Samuel Hoffman Date: Fri, 14 Jan 2022 10:25:43 -0500 Subject: [PATCH] deprecate python 3.6 and add 3.9 Signed-off-by: Samuel Hoffman --- .github/workflows/ci.yml | 2 +- README.md | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c86aa354..a3e04846 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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" diff --git a/README.md b/README.md index 2ba01adb..9f06548e 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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 ```