Skip to content

Commit 957c387

Browse files
committed
[fix] resrtict requirements
1 parent 136ec02 commit 957c387

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pypi_server/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
("Dmitry Orlov", "me@mosquito.su")
1010
]
1111

12-
version_info = (0, 4, 7)
12+
version_info = (0, 4, 8)
1313

1414
__version__ = ".".join(map(str, version_info))
1515
__author__ = ", ".join("{0} <{1}>".format(*author) for author in author_info)

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,10 +77,10 @@ def walker(base, *paths):
7777
},
7878
packages=find_packages(exclude=('tests',)),
7979
install_requires=(
80-
'tornado>=4.3',
80+
'tornado>=4.3,<5',
8181
'tornado-xmlrpc',
8282
'slimurl',
83-
'peewee',
83+
'peewee<3',
8484
'bcrypt>=2.0',
8585
'lxml',
8686
'futures',

0 commit comments

Comments
 (0)