File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed
Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ def import_class(name):
7474 for comp in components [1 :]:
7575 mod = getattr (mod , comp )
7676 return mod
77- except (ImportError , ValueError ):
77+ except (ImportError , ValueError , AttributeError ):
7878 pass
7979 return None
8080
Original file line number Diff line number Diff line change 33setup (
44 name = 'pyravendb' ,
55 packages = find_packages (),
6- version = '1.0.5 ' ,
6+ version = '1.0.6 ' ,
77 description = 'This is the official python client for RavenDB document database' ,
88 author = 'Idan Haim Shalom' ,
99 author_email = 'haimdude@gmail.com' ,
1010 url = 'https://github.com/IdanHaim/RavenDB-Python-Client' ,
1111 license = 'GNU' ,
1212 install_requires =
1313 [
14- 'pycrypto' ,
15- 'requests' ,
16- 'inflector' ,
14+ "pycrypto >= 2.6.1" ,
15+ "requests >= 2.9.1" ,
16+ "inflector >= 2.0.11" ,
17+ "enum >= 1.1.2" ,
1718 ],
1819 zip_safe = False
1920)
You can’t perform that action at this time.
0 commit comments