Skip to content

Commit 3e0f455

Browse files
committed
framework upgrade
1 parent ba9fa66 commit 3e0f455

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

requirements.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,5 @@ uvicorn
1010
requests
1111
coverage
1212
coveralls
13-
starlette==0.14.2
1413
aiosqlite
1514
greenlet

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from setuptools import setup, find_packages
22

3-
VERSION = '0.1.3'
3+
VERSION = '0.1.6'
44

55
print("""
66
@@ -13,12 +13,13 @@
1313
1414
""")
1515

16+
1617
if __name__ == '__main__':
1718
setup(
1819
name='fastapi_quickcrud',
1920
version=VERSION,
20-
install_requires=["fastapi","starlette==0.14.2","pydantic","SQLAlchemy>=1.4","StrEnum",
21-
"aiosqlite","uvicorn"],
21+
install_requires=["fastapi<=0.72.0","pydantic==1.8.2","SQLAlchemy<=1.4.30","StrEnum==0.4.7","starlette==0.17.1",
22+
"aiosqlite==0.17.0","uvicorn==0.17.0","greenlet==1.1.2","anyio==3.5.0"],
2223
python_requires=">=3.7",
2324
description="A comprehensive FastaAPI's CRUD router generator for SQLALchemy.",
2425
long_description=open("README.md",'r',encoding="utf-8").read(),

0 commit comments

Comments
 (0)