Skip to content
This repository has been archived by the owner on Mar 24, 2021. It is now read-only.

Don't restrict Python dependency versions #1020

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,18 +39,18 @@ def get_version():

install_requires = [
'six>=1.5',
'kazoo==2.5.0',
'kazoo>=2.5.0',
'tabulate'
]

extra_gevent_requires = [
'gevent==1.3.6'
'gevent>=1.3.6'
]

extra_requires = [
'lz4==0.10.1',
'lz4tools==1.3.1.2',
'xxhash==1.0.1'
'lz4>=0.10.1',
'lz4tools>=1.3.1.2',
'xxhash>=1.0.1'
] + extra_gevent_requires

lint_requires = [
Expand Down
10 changes: 5 additions & 5 deletions test-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
lz4==2.1.10
lz4tools==1.3.1.2
pytest==4.6.2
lz4>=2.1.10
lz4tools>=1.3.1.2
pytest>=4.6.2
pytest-cov
python-snappy
mock
unittest2
xxhash==1.3.0
parameterized==0.7.0
xxhash>=1.3.0
parameterized>=0.7.0
-e git+https://github.com/Parsely/[email protected]#egg=testinstances