From 5b4f0b33701ec934155e48f2974002cc13f876d6 Mon Sep 17 00:00:00 2001 From: Sviatoslav Sydorenko Date: Tue, 8 Dec 2020 16:13:31 +0100 Subject: [PATCH] Declare support for Python 3.9 in the metadata Co-authored-by: Rick Elrod --- changelogs/fragments/setup-py-declare-py39.yml | 2 ++ setup.py | 1 + 2 files changed, 3 insertions(+) create mode 100644 changelogs/fragments/setup-py-declare-py39.yml diff --git a/changelogs/fragments/setup-py-declare-py39.yml b/changelogs/fragments/setup-py-declare-py39.yml new file mode 100644 index 00000000000..2b9603c556e --- /dev/null +++ b/changelogs/fragments/setup-py-declare-py39.yml @@ -0,0 +1,2 @@ +minor_changes: + - setup.py - Declare that Python 3.9 is now supported (https://github.com/ansible/ansible/pull/72861). diff --git a/setup.py b/setup.py index 591c8554083..c952fabc2d9 100644 --- a/setup.py +++ b/setup.py @@ -390,6 +390,7 @@ static_setup_params = dict( 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', 'Topic :: System :: Installation/Setup', 'Topic :: System :: Systems Administration', 'Topic :: Utilities',