26 lines
802 B
Diff
26 lines
802 B
Diff
From bb2fade8b54d05183bc367d0715e9cbeaba71853 Mon Sep 17 00:00:00 2001
|
|
From: zoujiancang <jczou@isoftstone.com>
|
|
Date: Thu, 15 Jun 2023 15:20:34 +0800
|
|
Subject: [PATCH] modify the version restriction of falcon to (>=2.0.0)
|
|
|
|
---
|
|
setup.py | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/setup.py b/setup.py
|
|
index 3d84b66..cdd7773 100755
|
|
--- a/setup.py
|
|
+++ b/setup.py
|
|
@@ -96,7 +96,7 @@ setup(
|
|
entry_points={"console_scripts": ["hug = hug:development_runner.hug.interface.cli"]},
|
|
packages=["hug"],
|
|
requires=["falcon", "requests"],
|
|
- install_requires=["falcon==2.0.0", "requests"],
|
|
+ install_requires=["falcon>=2.0.0", "requests"],
|
|
setup_requires=["pytest-runner"],
|
|
tests_require=["pytest", "mock", "marshmallow"],
|
|
ext_modules=ext_modules,
|
|
--
|
|
2.27.0
|
|
|