Skip to content

Commit 7d8b252

Browse files
authored
Merge pull request #155 from tonybaloney/tonybaloney-patch-1
Add 3.11 to test matrix
2 parents 13545cb + d024d64 commit 7d8b252

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
fail-fast: false
1616
matrix:
1717
os: ['ubuntu-latest', 'windows-latest', 'macos-latest']
18-
python-version: [3.7, 3.8, 3.9, "3.10"]
18+
python-version: [3.7, 3.8, 3.9, "3.10", "3.11-dev"]
1919
runs-on: ${{ matrix.os }}
2020
steps:
2121
- uses: actions/checkout@v3

pyproject.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ classifiers = [
2828
"Programming Language :: Python :: 3.8",
2929
"Programming Language :: Python :: 3.9",
3030
"Programming Language :: Python :: 3.10",
31+
"Programming Language :: Python :: 3.11",
3132
"Programming Language :: Python :: 3 :: Only",
3233
]
3334
requires = [
@@ -57,7 +58,7 @@ wily = "wily.__main__:cli"
5758
legacy_tox_ini = """
5859
[tox]
5960
isolated_build = true
60-
envlist = py36, py37, py38, py39
61+
envlist = py36, py37, py38, py39, py310
6162
[testenv]
6263
passenv = CI TRAVIS TRAVIS_* HOME
6364
setenv =

src/wily/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
import logging
4242
import datetime
4343

44-
__version__ = "1.21.0"
44+
__version__ = "1.22.0"
4545

4646
_, WILY_LOG_NAME = tempfile.mkstemp(suffix="wily_log")
4747

0 commit comments

Comments
 (0)