Skip to content

Commit ae47f26

Browse files
committed
Allow library to install with requests 2.8.1
1 parent b6cb11a commit ae47f26

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

README.rst

+5
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,8 @@ Installation
1414
python setup.py install
1515
```
1616

17+
Notes
18+
-----
19+
Due to a quirky bug in Switchvox's HTTP server's 401 Challenges, a very recent version of the ```requests``` library is needed. So recent, in fact, that it isn't released yet.
20+
21+
As such, PySwitchvox maintains that it needs requests 2.8.1, when in reality we will need the eventually released 2.8.2. When that release is made, the library dependency in ```setup.py``` will be updated appropriately. Until then, ```requests``` will need to be installed from Github: https://github.com/kennethreitz/requests

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@
3030
"Programming Language :: Python",
3131
],
3232
tests_require=[],
33-
install_requires=["requests>=2.8.2"],
33+
install_requires=["requests>=2.8.1"],
3434
)

0 commit comments

Comments
 (0)