From 75a6a94275dd66db9c484507c9b82b38bec66d40 Mon Sep 17 00:00:00 2001 From: Phil Reinhold Date: Fri, 14 Aug 2020 07:38:15 -0700 Subject: [PATCH] Allow python=3.8 for pypi skeletons (#4014) * allow python=3.8 in the pypi skeleton * Update CHANGELOG.txt --- CHANGELOG.txt | 1 + conda_build/skeletons/pypi.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index f06bf0bd8e..d7a142874b 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -12,6 +12,7 @@ Other: ------ * Enable ppc64 support (#3921) +* Allow python=3.8 for pypi skeletons Docs: ----- diff --git a/conda_build/skeletons/pypi.py b/conda_build/skeletons/pypi.py index f32da0c051..49c5e814b2 100644 --- a/conda_build/skeletons/pypi.py +++ b/conda_build/skeletons/pypi.py @@ -490,7 +490,7 @@ def add_parser(repos): action='store', default=default_python, help="""Version of Python to use to run setup.py. Default is %(default)s.""", - choices=['2.7', '3.5', '3.6', '3.7'], + choices=['2.7', '3.5', '3.6', '3.7', '3.8'], ) pypi.add_argument(