From 1e74ec12fcd438ea153ba1d94490180b1d607c69 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A1s=20Mar=C3=B3y?= Date: Wed, 12 Oct 2022 13:48:22 +0000 Subject: [PATCH 1/2] Add python 3.11 to CI --- .github/workflows/pythonpackage.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml index aa48eae..3f9ebdf 100644 --- a/.github/workflows/pythonpackage.yml +++ b/.github/workflows/pythonpackage.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.6, 3.7, 3.8, 3.9, '3.10'] + python-version: [3.6, 3.7, 3.8, 3.9, '3.10', '3.11'] steps: - uses: actions/checkout@v2 From b57a0a89cd2596174300319ee0a83490ad987177 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A1s=20Mar=C3=B3y?= Date: Fri, 11 Nov 2022 09:46:24 +0100 Subject: [PATCH 2/2] Add Python 3.11 support as of version 1.10.0 --- setup.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index f02b0b6..943663e 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ def read(fname): setup( name="pconf", - version="1.9.1", + version="1.10.0", author="Andras Maroy", author_email="andras@maroy.hu", description=("Hierarchical python configuration with files, environment variables, command-line arguments."), @@ -31,7 +31,8 @@ def read(fname): 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', - 'Programming Language :: Python :: 3.10' + 'Programming Language :: Python :: 3.10', + 'Programming Language :: Python :: 3.11' ], install_requires=['pyyaml', 'deepmerge'], extras_require={