diff --git a/requirements.txt b/requirements.txt index 7e3c56cc7..e949a2416 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,7 @@ httplib2==0.9.2; python_version <= '2.7' httplib2==0.20.4; python_version > '3' pysimplesoap==1.08.14; python_version <= '2.7' -git+https://github.com/pysimplesoap/pysimplesoap.git@py311#pysimplesoap; python_version > '3' +pysimplesoap==1.8.22; python_version > '3' cryptography==3.3.2; python_version <= '2.7' cryptography==41.0.1; python_version > '3' fpdf>=1.7.2 @@ -11,4 +11,4 @@ Pillow>=2.0.0; platform_machine=='x86_64' tabulate==0.8.5 certifi>=2020.4.5.1 qrcode==6.1 -future==0.18.3 \ No newline at end of file +future==0.18.3 diff --git a/setup.py b/setup.py index 4bcbe8ec4..f8d2a4e2d 100644 --- a/setup.py +++ b/setup.py @@ -61,6 +61,7 @@ "httplib2==0.9.2;python_version <= '2.7'", "httplib2>=0.20.4;python_version > '3'", "pysimplesoap==1.08.14;python_version <= '2.7'", + "pysimplesoap==1.8.22;python_version > '3'", "cryptography==3.3.2;python_version <= '2.7'", "cryptography>=3.4.7;python_version > '3'", "fpdf>=1.7.2", @@ -71,9 +72,6 @@ "qrcode>=6.1", "future>=0.18.2", ], - dependency_links=[ - "git+https://github.com/pysimplesoap/pysimplesoap.git@py311#pysimplesoap; python_version > '3'", - ], extras_require={ "opt": ["pywin32==304;sys_platform == 'win32' and python_version > '3'"] },