Skip to content

Commit

Permalink
fix requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
luisjimenez6245 committed Dec 12, 2023
1 parent 9334fd6 commit ce57f42
Show file tree
Hide file tree
Showing 10 changed files with 27 additions and 107 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.8, 3.9, 3.10.0, 3.11.0]
python-version: ["3.8", "3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v2
Expand Down
8 changes: 0 additions & 8 deletions .idea/.gitignore

This file was deleted.

17 changes: 0 additions & 17 deletions .idea/fastapi-helpers.iml

This file was deleted.

12 changes: 0 additions & 12 deletions .idea/inspectionProfiles/Project_Default.xml

This file was deleted.

6 changes: 0 additions & 6 deletions .idea/inspectionProfiles/profiles_settings.xml

This file was deleted.

4 changes: 0 additions & 4 deletions .idea/misc.xml

This file was deleted.

8 changes: 0 additions & 8 deletions .idea/modules.xml

This file was deleted.

6 changes: 0 additions & 6 deletions .idea/vcs.xml

This file was deleted.

57 changes: 20 additions & 37 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,42 +1,25 @@
aiosqlite==0.17.0
anyio==3.6.1
argon2-cffi==21.3.0
argon2-cffi-bindings==21.2.0
attrs==21.4.0
autopep8==1.6.0
boto3==1.26.8
botocore==1.29.8
certifi==2022.6.15
cffi==1.15.1
charset-normalizer==2.1.0
click==8.1.3
databases==0.6.0
fastapi==0.87.0
aiosqlite==0.19.0
annotated-types==0.6.0
anyio==3.7.1
boto3==1.33.12
botocore==1.33.12
click==8.1.7
databases==0.6.2
exceptiongroup==1.2.0
fastapi==0.105.0
fastapi-better-logger==0.0.4
greenlet==2.0.1
httpx==0.23.0
idna==3.3
iniconfig==1.1.1
idna==3.6
jmespath==1.0.1
orjson==3.8.1
ormar==0.12.0
packaging==21.3
pluggy==1.0.0
py==1.11.0
pycparser==2.21
pydantic==1.10.2
pyparsing==3.0.9
pytest==7.1.2
pytest-asyncio==0.19.0
orjson==3.9.10
ormar==0.12.2
pydantic==1.10.8
pydantic_core==2.14.5
python-dateutil==2.8.2
requests==2.28.1
s3transfer==0.6.0
s3transfer==0.8.2
six==1.16.0
sniffio==1.2.0
SQLAlchemy==1.4.38
starlette==0.21.0
toml==0.10.2
tomli==2.0.1
typing_extensions==4.4.0
urllib3==1.26.10
sniffio==1.3.0
SQLAlchemy==1.4.41
starlette==0.27.0
typing_extensions==4.9.0
urllib3==1.26.18
watchtower==3.0.0
14 changes: 6 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,12 @@ def get_packages(package):
python_requires=">=3.8",
data_files=[("", ["LICENSE.md"])],
install_requires=[
"aiosqlite>=0.17.0",
"argon2-cffi>=21.3.0",
"ormar>=0.11.00",
'pydantic>=1.8.2',
"fastapi>=0.78.0",
"fastapi-better-logger>=0.0.4",
"typing_extensions>=4.0.0",
"aiosqlite>=0.19.0",
"ormar>=0.12.2",
'pydantic>=1.10.8',
"fastapi>=0.105.0",
"fastapi-better-logger>=0.0.5",
"typing_extensions>=4.9.0",
"watchtower>=3.0.0",
"boto3>=1.20.3"
],
Expand All @@ -75,7 +74,6 @@ def get_packages(package):
"mysql": ["aiomysql", "pymysql"],
"sqlite": ["aiosqlite"],
"orjson": ["orjson"],
"crypto": ["cryptography"],
},
classifiers=[
"Intended Audience :: Developers",
Expand Down

0 comments on commit ce57f42

Please sign in to comment.