Unverified Commit 8bb9fa43 authored by Tao Feng's avatar Tao Feng Committed by GitHub

Relax dependency to make it range (#144)

* Relax dependency to make it range

* Update requirements.txt
parent 4c46abea
...@@ -6,27 +6,27 @@ flake8==3.5.0 ...@@ -6,27 +6,27 @@ flake8==3.5.0
# A flake8 plugin that helps you write tidier imports. # A flake8 plugin that helps you write tidier imports.
# License: ISCL # License: ISCL
# Upstream url: https://pypi.python.org/pypi/flake8-tidy-imports # Upstream url: https://pypi.python.org/pypi/flake8-tidy-imports
flake8-tidy-imports==1.1.0 flake8-tidy-imports>=1.1.0,<2.0
# A mature full-featured Python testing tool. # A mature full-featured Python testing tool.
# License: MIT # License: MIT
# Upstream url: http://pytest.org/ # Upstream url: http://pytest.org/
pytest==3.6.0 pytest>=3.6.0,<4.0
# Pytest plugin for measuring coverage. # Pytest plugin for measuring coverage.
# License: MIT # License: MIT
# Upstream url: https://github.com/pytest-dev/pytest-cov # Upstream url: https://github.com/pytest-dev/pytest-cov
pytest-cov==2.5.1 pytest-cov>=2.5.1,<3.0
# Rolling backport of unittest.mock for all Pythons # Rolling backport of unittest.mock for all Pythons
# License: BSD # License: BSD
# Upstream url: https://mock.readthedocs.io/en/latest/ # Upstream url: https://mock.readthedocs.io/en/latest/
mock==2.0.0 mock>=2.0.0,<3.0
# Thin-wrapper around the mock package for easier use with py.test. # Thin-wrapper around the mock package for easier use with py.test.
# License: MIT # License: MIT
# Upstream url: https://pypi.python.org/pypi/pytest-mock # Upstream url: https://pypi.python.org/pypi/pytest-mock
pytest-mock==1.1 pytest-mock>=1.1,<2.0
# PEP 484 # PEP 484
# License: PSF # License: PSF
...@@ -36,17 +36,17 @@ typing==3.6.4 ...@@ -36,17 +36,17 @@ typing==3.6.4
# Python client for ElasticSearch # Python client for ElasticSearch
# License: Apache Software License # License: Apache Software License
# Upstream url: https://pypi.org/project/elasticsearch/ # Upstream url: https://pypi.org/project/elasticsearch/
elasticsearch==6.2.0 elasticsearch>=6.2.0,<7.0
atomicwrites==1.1.5 atomicwrites==1.1.5
attrs==18.1.0 attrs==18.1.0
more-itertools==4.2.0 more-itertools==4.2.0
pluggy==0.6.0 pluggy>=0.6.0
py==1.5.3 py==1.5.3
pyhocon==0.3.42 pyhocon==0.3.42
pyparsing==2.2.0 pyparsing==2.2.0
six==1.11.0 six==1.11.0
sqlalchemy==1.3.0 sqlalchemy>=1.3.0,<2.0
wheel==0.31.1 wheel==0.31.1
neo4j-driver==1.7.2 neo4j-driver==1.7.2
neotime==1.7.1 neotime==1.7.1
......
...@@ -2,7 +2,7 @@ import os ...@@ -2,7 +2,7 @@ import os
from setuptools import setup, find_packages from setuptools import setup, find_packages
__version__ = '1.4.5' __version__ = '1.4.6'
requirements_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), 'requirements.txt') requirements_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), 'requirements.txt')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment