From e996b9bdb88e76b416782b29851a9d70f8f6dd8d Mon Sep 17 00:00:00 2001 From: Martin Lang Date: Thu, 17 Aug 2023 14:47:53 +0200 Subject: [PATCH] Release 0.13.0 Release ywsd version 0.13.0. Unfortunately, aiopg is incompatible with sqlalchemy 2. For now, we pin sqlalchemy to version 1.x and attempt to migrate to native async support of sqlalchemy 2 later. --- .github/workflows/python-test.yaml | 2 +- requirements.txt | 2 +- setup.py | 3 ++- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/python-test.yaml b/.github/workflows/python-test.yaml index 61fdaad..55d30f8 100644 --- a/.github/workflows/python-test.yaml +++ b/.github/workflows/python-test.yaml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.7", "3.8", "3.9", "3.10"] + python-version: ["3.8", "3.9", "3.10", "3.11"] steps: - uses: actions/checkout@v2 diff --git a/requirements.txt b/requirements.txt index a0c2657..51898b7 100644 --- a/requirements.txt +++ b/requirements.txt @@ -3,4 +3,4 @@ aiopg aioredis python-yate pyyaml -sqlalchemy +sqlalchemy<2.0.0 diff --git a/setup.py b/setup.py index 51c8ce8..ac494f4 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setup( name="ywsd", - version="0.12.2", + version="0.13.0", packages=["ywsd"], url="https://gitlab.rc5.de/eventphone/ywsd", license="AGPLv3+", @@ -22,6 +22,7 @@ "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", "License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)", ], install_requires=[