From d024d6469e8edfe605cdaa6f0ac09fd1df1a1ebc Mon Sep 17 00:00:00 2001 From: Anthony Shaw Date: Fri, 15 Jul 2022 08:49:38 +0100 Subject: [PATCH] Update versions --- pyproject.toml | 3 ++- src/wily/__init__.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index caa19896..a7cbf9c0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,6 +28,7 @@ classifiers = [ "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3 :: Only", ] requires = [ @@ -57,7 +58,7 @@ wily = "wily.__main__:cli" legacy_tox_ini = """ [tox] isolated_build = true -envlist = py36, py37, py38, py39 +envlist = py36, py37, py38, py39, py310 [testenv] passenv = CI TRAVIS TRAVIS_* HOME setenv = diff --git a/src/wily/__init__.py b/src/wily/__init__.py index 416f1daf..41122094 100644 --- a/src/wily/__init__.py +++ b/src/wily/__init__.py @@ -41,7 +41,7 @@ import logging import datetime -__version__ = "1.21.0" +__version__ = "1.22.0" _, WILY_LOG_NAME = tempfile.mkstemp(suffix="wily_log")