Skip to content

Commit

Permalink
Release 0.13.0
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
garw committed Aug 17, 2023
1 parent 055cf5c commit 6280baf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ aiopg
aioredis
python-yate
pyyaml
sqlalchemy
sqlalchemy<2.0.0
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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+",
Expand All @@ -22,14 +22,15 @@
"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=[
"aiopg",
"aiohttp",
"python-yate>=0.4",
"pyyaml",
"sqlalchemy",
"sqlalchemy<2.0.0",
],
entry_points={
"console_scripts": [
Expand Down

0 comments on commit 6280baf

Please sign in to comment.