Skip to content

Commit 18504d8

Browse files
committed
[mw] Improve dependencies after migration to Python 3
1 parent 46d4047 commit 18504d8

File tree

1 file changed

+4
-9
lines changed

1 file changed

+4
-9
lines changed

setup.py

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@
4141
# Database and storage
4242
# Can't upgrade to pymongo-3.5.1 due to "from pymongo.connection import Connection"
4343
# usage in "mongodb_gridfs_beaker" module.
44-
'pymongo', # 3.13.0, 4.3.3
45-
'mongodb_gridfs_beaker==0.6.0dev1',
46-
'mongoengine', # 0.24.1
44+
'pymongo', # 3.13.0, 4.3.3
45+
'mongodb_gridfs_beaker@https://github.com/ip-tools/mongodb_gridfs_beaker/archive/0.6.0dev1.tar.gz#egg=mongodb_gridfs_beaker',
46+
'mongoengine==0.20.0', # 0.27.0
4747
'python-magic<1',
4848

4949
# Web services
@@ -93,7 +93,7 @@
9393
# Data handling
9494
'attrs',
9595
'Munch',
96-
'pyparsing',
96+
'pyparsing<4', # 3.0.9
9797
'python-dateutil<3',
9898
'ago==0.0.9', # 0.0.93
9999
'arrow==0.10.0', # 0.12.1
@@ -215,11 +215,6 @@
215215
extras_require={
216216
'test': test_requires,
217217
},
218-
dependency_links=[
219-
'https://github.com/ip-tools/mongodb_gridfs_beaker/archive/0.6.0dev1.tar.gz#egg=mongodb_gridfs_beaker',
220-
'https://github.com/ip-tools/mechanize/archive/v0.4.3dev2.tar.gz#egg=mechanize-0.4.3dev2',
221-
#'https://github.com/dagwieers/unoconv/archive/master.tar.gz#egg=unoconv-0.8.2',
222-
],
223218

224219
entry_points={
225220
'paste.app_factory': [

0 commit comments

Comments
 (0)