Skip to content

Commit

Permalink
Merge pull request #155 from tonybaloney/tonybaloney-patch-1
Browse files Browse the repository at this point in the history
Add 3.11 to test matrix
  • Loading branch information
tonybaloney committed Jul 15, 2022
2 parents 13545cb + d024d64 commit 7d8b252
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand Down Expand Up @@ -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 =
Expand Down
2 changes: 1 addition & 1 deletion src/wily/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
import logging
import datetime

__version__ = "1.21.0"
__version__ = "1.22.0"

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

Expand Down

0 comments on commit 7d8b252

Please sign in to comment.