kanha-upadhyay commited on
Commit
15ad0e8
·
1 Parent(s): e42e330

Add gunicorn as a dependency in pyproject.toml and update poetry.lock

Browse files
Files changed (2) hide show
  1. poetry.lock +23 -1
  2. pyproject.toml +2 -1
poetry.lock CHANGED
@@ -419,6 +419,28 @@ files = [
419
  [package.extras]
420
  speedup = ["python-levenshtein (>=0.12)"]
421
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
422
  [[package]]
423
  name = "h11"
424
  version = "0.16.0"
@@ -2866,4 +2888,4 @@ files = [
2866
  [metadata]
2867
  lock-version = "2.1"
2868
  python-versions = "3.12.*"
2869
- content-hash = "a4848441e41352e96058b5f3a2329a55e001d48640cf9a3842969bd339f90d7d"
 
419
  [package.extras]
420
  speedup = ["python-levenshtein (>=0.12)"]
421
 
422
+ [[package]]
423
+ name = "gunicorn"
424
+ version = "23.0.0"
425
+ description = "WSGI HTTP Server for UNIX"
426
+ optional = false
427
+ python-versions = ">=3.7"
428
+ groups = ["main"]
429
+ files = [
430
+ {file = "gunicorn-23.0.0-py3-none-any.whl", hash = "sha256:ec400d38950de4dfd418cff8328b2c8faed0edb0d517d3394e457c317908ca4d"},
431
+ {file = "gunicorn-23.0.0.tar.gz", hash = "sha256:f014447a0101dc57e294f6c18ca6b40227a4c90e9bdb586042628030cba004ec"},
432
+ ]
433
+
434
+ [package.dependencies]
435
+ packaging = "*"
436
+
437
+ [package.extras]
438
+ eventlet = ["eventlet (>=0.24.1,!=0.36.0)"]
439
+ gevent = ["gevent (>=1.4.0)"]
440
+ setproctitle = ["setproctitle"]
441
+ testing = ["coverage", "eventlet", "gevent", "pytest", "pytest-cov"]
442
+ tornado = ["tornado (>=0.2)"]
443
+
444
  [[package]]
445
  name = "h11"
446
  version = "0.16.0"
 
2888
  [metadata]
2889
  lock-version = "2.1"
2890
  python-versions = "3.12.*"
2891
+ content-hash = "743372a0257393ca269c6820a4b5ba5f41f2a7a0e70e4a3641ac78c9937462b0"
pyproject.toml CHANGED
@@ -20,7 +20,8 @@ dependencies = [
20
  "python-doctr (>=1.0.0,<2.0.0)",
21
  "aiofiles (>=24.1.0,<25.0.0)",
22
  "numpy (>=1.24.0,<2.0.0)",
23
- "python-multipart (>=0.0.9,<0.1.0)"
 
24
  ]
25
 
26
 
 
20
  "python-doctr (>=1.0.0,<2.0.0)",
21
  "aiofiles (>=24.1.0,<25.0.0)",
22
  "numpy (>=1.24.0,<2.0.0)",
23
+ "python-multipart (>=0.0.9,<0.1.0)",
24
+ "gunicorn (>=23.0.0,<24.0.0)"
25
  ]
26
 
27