Skip to content

Commit

Permalink
added support to python 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
amenezes committed Oct 26, 2022
1 parent efb81c6 commit cee23eb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
tests:
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10']
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
os: [ubuntu]
fail-fast: true
runs-on: ${{ matrix.os }}-latest
Expand Down
2 changes: 1 addition & 1 deletion config/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from .cfenv import CFenv
from .spring import ConfigClient, config_client, create_config_client

__version__ = "1.1.0"
__version__ = "1.2.0"
__all__ = [
"__version__",
"ConfigClient",
Expand Down
3 changes: 2 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,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 :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Topic :: Software Development :: Libraries
Expand Down Expand Up @@ -90,7 +91,7 @@ warn_unused_ignores = True
warn_unreachable = True

[tox:tox]
envlist = py{37,38,39,310},pypy{3.6,3.7,3.8}
envlist = py{37,38,39,310,311},pypy{3.6,3.7,3.8}

[testenv]
deps = -rrequirements-dev.txt
Expand Down

0 comments on commit cee23eb

Please sign in to comment.