Skip to content
This repository was archived by the owner on Apr 4, 2024. It is now read-only.

Commit 3d1cc87

Browse files
authored
Merge pull request #11 from pyropy/#9-add-missing-dependencies
#9 add missing dependencies
2 parents 967060b + 9cb8031 commit 3d1cc87

File tree

3 files changed

+95
-78
lines changed

3 files changed

+95
-78
lines changed

Pipfile

+11-11
Original file line numberDiff line numberDiff line change
@@ -8,20 +8,20 @@ jedi = "*"
88
neovim = "*"
99

1010
[packages]
11-
fastapi = "==0.61.1"
12-
netifaces = "==0.10.6"
13-
pydantic = "==1.6.1"
14-
starlette = "==0.13.6"
15-
python-socketio = "==4.6.0"
11+
fastapi = ">=0.61.1"
12+
netifaces = ">=0.10.6"
13+
pydantic = ">=1.6.1"
14+
starlette = ">=0.13.6"
15+
python-socketio = ">=4.6.0"
1616
python-engineio = "*"
1717

1818
[test]
19-
pytest = "==6.0.1"
20-
fastapi = "==0.61.1"
21-
netifaces = "==0.10.6"
22-
pydantic = "==1.6.1"
23-
starlette = "==0.13.6"
24-
python-socketio = "==4.6.0"
19+
pytest = ">=6.0.1"
20+
fastapi = ">=0.61.1"
21+
netifaces = ">=0.10.6"
22+
pydantic = ">=1.6.1"
23+
starlette = ">=0.13.6"
24+
python-socketio = ">=4.6.0"
2525
python-engineio = "*"
2626

2727

Pipfile.lock

+75-66
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

setup.py

+9-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,15 @@ def get_long_description():
2828
license="Apache License, Version 2.0",
2929
version=VERSION,
3030
packages=["fastapi_socketio"],
31-
install_requires=[],
31+
install_requires=[
32+
"fastapi>=0.61.1",
33+
"netifaces>=0.10.6",
34+
"pydantic>=1.6.1",
35+
"starlette>=0.13.6",
36+
"python-socketio>=4.6.0",
37+
"python-engineio",
38+
39+
],
3240
extras_require={"test": ["pytest"]},
3341
tests_require=["fastapi-socketio[test]"],
3442
)

0 commit comments

Comments
 (0)