Skip to content

Commit

Permalink
requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
EvaMart committed Dec 20, 2023
1 parent 3a2399f commit 5d7230b
Show file tree
Hide file tree
Showing 4 changed files with 209 additions and 18 deletions.
2 changes: 1 addition & 1 deletion api/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Base python package
FROM python:3.6
FROM python:3.8

# Working directory
WORKDIR /app
Expand Down
1 change: 1 addition & 0 deletions api/Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ flask-socketio = "*"
requests = "*"
pymongo = "*"
python-dotenv = "*"
fastapi = "*"

[requires]
python_version = "3.8"
177 changes: 176 additions & 1 deletion api/Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

47 changes: 31 additions & 16 deletions api/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,21 +1,36 @@
annotated-types==0.6.0 ; python_version >= '3.8'
anyio==3.7.1 ; python_version >= '3.7'
bidict==0.22.1 ; python_version >= '3.7'
certifi==2022.12.7 ; python_version >= '3.6'
charset-normalizer==3.0.1
click==8.1.3 ; python_version >= '3.7'
dnspython==2.3.0 ; python_version >= '3.7'
idna==3.4 ; python_version >= '3.5'
importlib-metadata==6.0.0 ; python_version < '3.10'
blinker==1.7.0 ; python_version >= '3.8'
certifi==2023.11.17 ; python_version >= '3.6'
charset-normalizer==3.3.2 ; python_full_version >= '3.7.0'
click==8.1.7 ; python_version >= '3.7'
dnspython==2.4.2 ; python_version >= '3.8'
exceptiongroup==1.2.0 ; python_version < '3.11'
fastapi==0.105.0
h11==0.14.0 ; python_version >= '3.7'
idna==3.6 ; python_version >= '3.5'
importlib-metadata==7.0.0 ; python_version < '3.10'
itsdangerous==2.1.2 ; python_version >= '3.7'
markupsafe==2.1.2 ; python_version >= '3.7'
numpy==1.24.2 ; python_version < '3.10'
pandas==1.5.3
pymongo==4.3.3
jinja2==3.1.2 ; python_version >= '3.7'
markupsafe==2.1.3 ; python_version >= '3.7'
numpy==1.24.4 ; python_version < '3.10'
pandas==2.0.3
pydantic==2.5.2 ; python_version >= '3.7'
pydantic-core==2.14.5 ; python_version >= '3.7'
pymongo==4.6.1
python-dateutil==2.8.2 ; python_version >= '2.7'
python-dotenv==1.0.0
python-engineio==4.3.4 ; python_version >= '3.6'
python-socketio==5.7.2 ; python_version >= '3.6'
pytz==2022.7.1
requests==2.28.2
python-engineio==4.8.0 ; python_version >= '3.6'
python-socketio==5.10.0 ; python_version >= '3.6'
pytz==2023.3.post1
requests==2.31.0
simple-websocket==1.0.0 ; python_version >= '3.6'
six==1.16.0 ; python_version >= '2.7'
urllib3==1.26.14 ; python_version >= '2.7'
zipp==3.15.0 ; python_version >= '3.7'
sniffio==1.3.0 ; python_version >= '3.7'
starlette==0.27.0 ; python_version >= '3.7'
typing-extensions==4.9.0 ; python_version >= '3.8'
tzdata==2023.3 ; python_version >= '2'
urllib3==2.1.0 ; python_version >= '3.8'
wsproto==1.2.0 ; python_full_version >= '3.7.0'
zipp==3.17.0 ; python_version >= '3.8'

0 comments on commit 5d7230b

Please sign in to comment.