Skip to content

Commit

Permalink
loosen the tornado requirement.
Browse files Browse the repository at this point in the history
  • Loading branch information
hartym committed Oct 16, 2016
1 parent 0b77d9b commit eae843a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This file has been auto-generated.
# All changes will be lost, see Projectfile.
#
# Updated at 2016-10-02 09:35:31.162813
# Updated at 2016-10-16 09:59:21.935869

PYTHON ?= $(shell which python)
PYTHON_BASENAME ?= $(shell basename $(PYTHON))
Expand All @@ -10,7 +10,7 @@ PYTHON_REQUIREMENTS_DEV_FILE ?= requirements-dev.txt
QUICK ?=
VIRTUAL_ENV ?= .virtualenv-$(PYTHON_BASENAME)
PIP ?= $(VIRTUAL_ENV)/bin/pip
PYTEST ?= $(VIRTUAL_ENV)/bin/py.test
PYTEST ?= $(VIRTUAL_ENV)/bin/pytest
PYTEST_OPTIONS ?= --capture=no --cov=edgy/project --cov-report html
SPHINX_OPTS ?=
SPHINX_BUILD ?= $(VIRTUAL_ENV)/bin/sphinx-build
Expand Down
2 changes: 1 addition & 1 deletion Projectfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ install_requires = [
'edgy.event >=0.1,<0.2',
'jinja2 >=2.8,<3.0',
'six',
'tornado >=4.4,<4.5',
'tornado >=4,<5',
]

extras_require = {
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ def read(filename, flt=None):
'edgy.event >=0.1,<0.2',
'jinja2 >=2.8,<3.0',
'six',
'tornado >=4.4,<4.5'],
namespace_packages = [u'edgy'],
'tornado >=4,<5'],
namespace_packages = ['edgy'],
version = version,
long_description = read('README.rst'),
classifiers = read('classifiers.txt', tolines),
Expand Down

0 comments on commit eae843a

Please sign in to comment.