Introduction
Introduction Statistics Contact Development Disclaimer Help
Don't use ~= operator for defining dependancies - toot - Unnamed repository; ed…
Log
Files
Refs
LICENSE
---
commit acda7cbb945692efbb79a720354de7aec64f1927
parent 47b6a830a129bd6a22ca7eda9594966dcc07ce93
Author: Ivan Habunek <[email protected]>
Date: Wed, 26 Apr 2017 11:07:43 +0200
Don't use ~= operator for defining dependancies
It's not supported in older versions of pip and causes problems.
issue #8
issue #10
Diffstat:
setup.py | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/setup.py b/setup.py
@@ -28,9 +28,9 @@ setup(
],
packages=['toot'],
install_requires=[
- 'requests ~= 2.13',
- 'beautifulsoup4 ~= 4.5.3',
- 'future',
+ 'requests>=2.13,<3.0',
+ 'beautifulsoup4>=4.5.0,<5.0',
+ 'future>=0.16',
],
entry_points={
'console_scripts': [
You are viewing proxied material from vernunftzentrum.de. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.