From 82085b440c0e4e2b5b2d7b67d6e15e44b79d6068 Mon Sep 17 00:00:00 2001 From: Cesar Canassa Date: Fri, 8 Sep 2023 09:57:43 +0200 Subject: [PATCH] Removed Python upper bound limit --- .github/workflows/ci.yaml | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 55ebb64..9616c9d 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [ 3.7, 3.8, 3.9 ] + python-version: [ 3.7, 3.8, 3.9, 3.10, 3.11 ] steps: - name: Checkout repository diff --git a/setup.py b/setup.py index b920dc1..42f283d 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ 'License :: OSI Approved :: GNU Affero General Public License v3', 'Programming Language :: Python :: 3 :: Only' ], - python_requires=">=3.7,<3.10", + python_requires=">=3.7", install_requires=[ 'pipelinewise-singer-python==1.*', 'psycopg2-binary==2.9.5',