From 5c2a16274d9684d9d5475cab283559678278d7ab Mon Sep 17 00:00:00 2001 From: P M <10617122+pylipp@users.noreply.github.com> Date: Thu, 26 May 2022 21:20:41 +0200 Subject: [PATCH] Add Tests for Python 3.10, 3.9 (#314) --- .travis.yml | 2 ++ setup.py | 3 +++ 2 files changed, 5 insertions(+) diff --git a/.travis.yml b/.travis.yml index 2bdb3c5..375d8bb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,6 +13,8 @@ python: - '3.6' - '3.7' - '3.8' + - '3.9' + - '3.10' - pypy matrix: diff --git a/setup.py b/setup.py index d117d96..91a26d6 100644 --- a/setup.py +++ b/setup.py @@ -50,6 +50,9 @@ 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: Implementation :: CPython', 'Programming Language :: Python :: Implementation :: PyPy', 'Topic :: Internet :: WWW/HTTP :: Dynamic Content',