We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2f7598 commit 4939bb1Copy full SHA for 4939bb1
mongoframes/__init__.py
@@ -1,8 +1,11 @@
1
from mongoframes.frames import *
2
from mongoframes.pagination import *
3
from mongoframes.queries import *
4
+from pymongo.collation import Collation
5
from pymongo import (
6
IndexModel,
7
ASCENDING as ASC,
- DESCENDING as DESC
8
+ DESCENDING as DESC,
9
+ GEOSPHERE,
10
+ TEXT
11
)
setup.py
@@ -21,7 +21,7 @@
21
# Versions should comply with PEP440. For a discussion on single-sourcing
22
# the version across setup.py and the project code, see
23
# https://packaging.python.org/en/latest/single_source_version.html
24
- version='1.2.8',
+ version='1.2.9',
25
26
description='A fast unobtrusive MongoDB ODM for Python',
27
long_description=long_description,
0 commit comments