diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 56bc335b..77e2fa34 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -15,7 +15,7 @@ jobs: fail-fast: false matrix: os: ['ubuntu-latest', 'windows-latest', 'macos-latest'] - python-version: [3.7, 3.8, 3.9, "3.10"] + python-version: [3.7, 3.8, 3.9, "3.10", "3.11-dev"] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v3 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")