Skip to content

Commit

Permalink
Allow python=3.8 for pypi skeletons (#4014)
Browse files Browse the repository at this point in the history
* allow python=3.8 in the pypi skeleton

* Update CHANGELOG.txt
  • Loading branch information
PhilReinhold authored Aug 14, 2020
1 parent dc6143f commit 75a6a94
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ Other:
------

* Enable ppc64 support (#3921)
* Allow python=3.8 for pypi skeletons

Docs:
-----
Expand Down
2 changes: 1 addition & 1 deletion conda_build/skeletons/pypi.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down

0 comments on commit 75a6a94

Please sign in to comment.