Skip to content

Commit 281444c

Browse files
committed
Add support python 3.11
1 parent 9855613 commit 281444c

4 files changed

Lines changed: 34 additions & 31 deletions

File tree

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
contents: write
4141
strategy:
4242
matrix:
43-
py_version: [ "3.8", "3.9", "3.10" ]
43+
py_version: [ "3.8", "3.9", "3.10", "3.11" ]
4444
os: [ ubuntu-22.04 ]
4545
runs-on: "${{ matrix.os }}"
4646
steps:

poetry.lock

Lines changed: 29 additions & 26 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "runtime-config-py"
3-
version = "0.0.6"
3+
version = "0.0.7"
44
description = "Library for runtime updating project settings."
55
license = "MIT"
66
authors = ["Aleksey Petrunnik <petrunnik.a@gmail.com>"]
@@ -22,12 +22,12 @@ classifiers = [
2222
]
2323

2424
[tool.poetry.dependencies]
25-
python = ">=3.8, <3.11"
25+
python = ">=3.8, <3.12"
2626
aiohttp = { version = "^3.8.1", optional = true }
2727
pydantic = "^1.10.1"
2828

2929
[tool.poetry.dev-dependencies]
30-
pytest = "^7.1.3"
30+
pytest = "^7.2.0"
3131
pytest-asyncio = "^0.18.3"
3232
pytest-mock = "^3.10.0"
3333
pytest-cov = "^3.0.0"

scripts/tests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
SUPPORTED_VERSIONS=("3.8" "3.9" "3.10")
1+
SUPPORTED_VERSIONS=("3.8" "3.9" "3.10" "3.11")
22
EXIT_CODES=()
33

44
for ver in "${SUPPORTED_VERSIONS[@]}"; do

0 commit comments

Comments
 (0)