From 7322e7adce32a788687d6eab9ccedf5a062ff435 Mon Sep 17 00:00:00 2001 From: Alex Kanitz Date: Tue, 9 Nov 2021 18:38:47 +0100 Subject: [PATCH] build: support Python 3.9 (#47) --- .travis.yml | 1 + setup.py | 1 + 2 files changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index c9bf0b9..4e09471 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,6 +6,7 @@ python: - "3.6" - "3.7" - "3.8" + - "3.9" install: - pip install -r requirements_dev.txt diff --git a/setup.py b/setup.py index 0c03fca..783c6ec 100644 --- a/setup.py +++ b/setup.py @@ -28,6 +28,7 @@ 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', ], install_requires=[ 'pydantic>=1.6.1',